collection-crud/composer.json

73 lines
1.9 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": {
2023-07-21 10:23:16 -04:00
"php": ">=8.2",
2022-02-17 14:49:33 -05:00
"composer/package-versions-deprecated": "1.11.99.5",
2023-07-21 10:23:16 -04:00
"doctrine/doctrine-bundle": "^2.8.2",
2022-02-18 12:04:13 -05:00
"doctrine/doctrine-migrations-bundle": "^3.2.2",
2023-07-21 10:23:16 -04:00
"doctrine/orm": "^2.14.1",
"sensio/framework-extra-bundle": "^6.2.9",
"symfony/form": "^6.2.5",
"symfony/maker-bundle": "^1.48",
"symfony/monolog-bundle": "^3.8",
"symfony/security-bundle": "^6.2.6",
"symfony/security-csrf": "^6.2.5",
"symfony/translation": "^6.2.5",
"symfony/twig-bundle": "^6.2.5",
"symfony/validator": "^6.2.5",
"symfony/yaml": "^6.2.5",
"twig/twig": "^2.12|^3.5"
2017-11-09 11:53:01 -05:00
},
"require-dev": {
2023-07-21 10:23:16 -04:00
"phpunit/phpunit": "^9.5.28",
2018-07-23 09:52:00 -04:00
"roave/security-advisories": "dev-master",
2023-07-21 10:23:16 -04:00
"symfony/dotenv": "^6.2.5",
"symfony/flex": "^2.2.4",
"symfony/stopwatch": "^6.2.5",
"symfony/web-profiler-bundle": "^6.2.5"
2017-11-30 15:06:13 -05:00
},
"config": {
"preferred-install": {
"*": "dist"
},
2022-02-18 12:04:13 -05:00
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
2017-11-30 15:06:13 -05:00
},
"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": "*",
2020-06-02 16:08:08 -04:00
"symfony/twig-bundle": "<4.4",
"symfony/debug": "<4.4"
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
}
}
}