buckets/composer.json

102 lines
2.9 KiB
JSON
Raw Normal View History

2026-06-14 20:49:31 +02:00
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"ext-ctype": "*",
"ext-iconv": "*",
2026-06-14 21:55:14 +02:00
"api-platform/doctrine-orm": "^4.3",
"api-platform/symfony": "^4.3",
"doctrine/doctrine-bundle": "^3.2",
"doctrine/doctrine-migrations-bundle": "^4.0",
"doctrine/orm": "^3.6",
"nelmio/cors-bundle": "^2.6",
"phpdocumentor/reflection-docblock": "^6.0",
"phpstan/phpdoc-parser": "^2.3",
"symfony/asset": "8.1.*",
2026-06-14 20:49:31 +02:00
"symfony/console": "8.1.*",
"symfony/dotenv": "8.1.*",
2026-06-14 21:55:14 +02:00
"symfony/expression-language": "8.1.*",
2026-06-14 20:49:31 +02:00
"symfony/flex": "^2",
"symfony/framework-bundle": "8.1.*",
2026-06-18 00:31:49 +02:00
"symfony/monolog-bundle": "^4.0",
2026-06-14 21:55:14 +02:00
"symfony/property-access": "8.1.*",
"symfony/property-info": "8.1.*",
2026-06-14 20:49:31 +02:00
"symfony/runtime": "8.1.*",
2026-06-14 21:55:14 +02:00
"symfony/security-bundle": "8.1.*",
"symfony/serializer": "8.1.*",
"symfony/twig-bundle": "8.1.*",
2026-06-17 20:54:25 +02:00
"symfony/uid": "8.1.*",
2026-06-14 21:55:14 +02:00
"symfony/validator": "8.1.*",
2026-06-14 20:49:31 +02:00
"symfony/yaml": "8.1.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
2026-06-15 01:11:08 +02:00
"phpstan/extension-installer": true,
2026-06-14 20:49:31 +02:00
"symfony/flex": true,
"symfony/runtime": true
},
"bump-after-update": 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": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*"
},
"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,
2026-06-15 00:14:42 +02:00
"require": "8.1.*",
"docker": true
2026-06-14 20:49:31 +02:00
}
2026-06-15 01:04:32 +02:00
},
"require-dev": {
2026-06-17 20:54:25 +02:00
"dama/doctrine-test-bundle": "^8.6",
2026-06-15 01:15:21 +02:00
"friendsofphp/php-cs-fixer": "^3.95",
2026-06-15 01:11:08 +02:00
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
2026-06-15 01:04:32 +02:00
"phpunit/phpunit": "^13.2",
"symfony/browser-kit": "8.1.*",
2026-06-17 20:23:15 +02:00
"symfony/css-selector": "8.1.*",
"symfony/maker-bundle": "^1.67"
2026-06-14 20:49:31 +02:00
}
}