collection-crud/composer.json

72 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",
"doctrine/orm": "^3.1.1",
"symfony/form": "^7.0.4",
2023-07-21 10:23:16 -04:00
"symfony/maker-bundle": "^1.48",
"symfony/monolog-bundle": "^3.8",
"symfony/security-bundle": "^7.0.5",
"symfony/security-csrf": "^7.0.3",
"symfony/translation": "^7.0.4",
"symfony/twig-bundle": "^7.0.4",
"symfony/validator": "^7.0.5",
"symfony/yaml": "^7.0.3",
2023-07-21 10:23:16 -04:00
"twig/twig": "^2.12|^3.5"
2017-11-09 11:53:01 -05:00
},
"require-dev": {
"phpunit/phpunit": "^11.0.8",
2018-07-23 09:52:00 -04:00
"roave/security-advisories": "dev-master",
"symfony/dotenv": "^7.0.4",
2023-07-21 10:23:16 -04:00
"symfony/flex": "^2.2.4",
"symfony/stopwatch": "^7.0.3",
"symfony/web-profiler-bundle": "^7.0.4"
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
}
}
}