test/composer.json

86 lines
2.3 KiB
JSON
Raw Normal View History

2024-01-17 12:36:10 +00:00
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^2.17",
2024-01-18 11:01:43 +00:00
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.25",
2024-01-26 10:52:26 +00:00
"symfony/asset": "7.0.*",
2024-02-01 10:22:12 +00:00
"symfony/asset-mapper": "^7.0",
2024-01-17 12:36:10 +00:00
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.0.*",
2024-01-18 11:01:43 +00:00
"symfony/property-access": "7.0.*",
"symfony/property-info": "7.0.*",
2024-01-17 12:36:10 +00:00
"symfony/runtime": "7.0.*",
2024-01-18 11:01:43 +00:00
"symfony/security-bundle": "7.0.*",
"symfony/serializer": "7.0.*",
2024-01-18 12:39:10 +00:00
"symfony/twig-bundle": "7.0.*",
"symfony/yaml": "7.0.*",
"twig/twig": "*"
2024-01-17 12:36:10 +00:00
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
2024-02-01 10:22:12 +00:00
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
2024-01-17 12:36:10 +00:00
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.0.*"
}
},
"require-dev": {
2024-03-13 05:43:01 +00:00
"deployer/deployer": "^7.3",
2024-01-17 16:17:12 +00:00
"phpunit/phpunit": "10.*",
"symfony/maker-bundle": "^1.52"
2024-01-17 12:36:10 +00:00
}
}