collection-crud/composer.json

59 lines
1.4 KiB
JSON
Raw Normal View History

2017-11-09 11:53:01 -05:00
{
"type": "project",
2017-11-30 15:06:13 -05:00
"license": "proprietary",
2017-11-09 11:53:01 -05:00
"require": {
2018-07-11 09:18:46 -04:00
"php": "^7.2.0",
2018-07-23 09:52:00 -04:00
"sensio/framework-extra-bundle": "^5.2",
"symfony/debug-pack": "^1.0",
2017-11-30 15:06:13 -05:00
"symfony/form": "^4.0",
2018-02-14 16:19:26 -05:00
"symfony/maker-bundle": "^1.0",
2019-07-23 10:31:06 -04:00
"symfony/orm-pack": "^1.0",
"symfony/translation": "^4.3",
"symfony/validator": "^4.3"
2017-11-09 11:53:01 -05:00
},
"require-dev": {
2018-07-23 09:52:00 -04:00
"roave/security-advisories": "dev-master",
"symfony/dotenv": "^4.0",
"symfony/flex": "^1.0"
2017-11-30 15:06:13 -05:00
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
2017-11-30 15:06:13 -05:00
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
2017-11-30 15:06:13 -05:00
}
2017-11-09 11:53:01 -05:00
},
"scripts": {
2017-11-30 15:06:13 -05:00
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
2017-11-09 11:53:01 -05:00
"post-install-cmd": [
2017-11-30 15:06:13 -05:00
"@auto-scripts"
2017-11-09 11:53:01 -05:00
],
"post-update-cmd": [
2017-11-30 15:06:13 -05:00
"@auto-scripts"
2017-11-09 11:53:01 -05:00
]
},
2017-11-30 15:06:13 -05:00
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
2017-11-09 11:53:01 -05:00
},
"extra": {
2017-11-30 15:06:13 -05:00
"symfony": {
"id": "01C06XCKJ8KKPKS0GJESWVPJFC",
"allow-contrib": false
2017-11-09 11:53:01 -05:00
}
}
}