Created
November 29, 2020 12:58
-
-
Save tarlepp/96fdfc188b4ad7b458680455c19acc86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "project", | |
"license": "proprietary", | |
"require": { | |
"php": ">=7.2.5", | |
"ext-ctype": "*", | |
"ext-iconv": "*", | |
"doctrine/doctrine-bundle": "^2.2", | |
"symfony/console": "5.1.*", | |
"symfony/dotenv": "5.1.*", | |
"symfony/flex": "^1.3.1", | |
"symfony/framework-bundle": "5.1.*", | |
"symfony/yaml": "5.1.*" | |
}, | |
"require-dev": { | |
}, | |
"config": { | |
"optimize-autoloader": true, | |
"preferred-install": { | |
"*": "dist" | |
}, | |
"sort-packages": true | |
}, | |
"autoload": { | |
"psr-4": { | |
"App\\": "src/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"App\\Tests\\": "tests/" | |
} | |
}, | |
"replace": { | |
"paragonie/random_compat": "2.*", | |
"symfony/polyfill-ctype": "*", | |
"symfony/polyfill-iconv": "*", | |
"symfony/polyfill-php72": "*", | |
"symfony/polyfill-php71": "*", | |
"symfony/polyfill-php70": "*", | |
"symfony/polyfill-php56": "*" | |
}, | |
"scripts": { | |
"auto-scripts": { | |
"cache:clear": "symfony-cmd", | |
"assets:install %PUBLIC_DIR%": "symfony-cmd" | |
}, | |
"post-install-cmd": [ | |
"@auto-scripts" | |
], | |
"post-update-cmd": [ | |
"@auto-scripts" | |
] | |
}, | |
"conflict": { | |
"symfony/symfony": "*" | |
}, | |
"extra": { | |
"symfony": { | |
"allow-contrib": false, | |
"require": "5.1.*" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment