Files
e-ticket/composer.json

121 lines
3.6 KiB
JSON
Raw Normal View History

2026-03-04 21:52:21 +01:00
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"ext-ctype": "*",
"ext-iconv": "*",
2026-03-04 21:52:29 +01:00
"doctrine/doctrine-bundle": "^3.2",
"doctrine/doctrine-migrations-bundle": "^4.0",
"doctrine/orm": "^3.6",
"dompdf/dompdf": "*",
"endroid/qr-code-bundle": "*",
"league/flysystem-aws-s3-v3": "^3.32",
"league/flysystem-bundle": "^3.6",
"liip/imagine-bundle": "^2.17",
"mobiledetect/mobiledetectlib": "*",
"nelmio/security-bundle": "^3.9",
2026-03-04 21:52:29 +01:00
"phpdocumentor/reflection-docblock": "^6.0",
"phpstan/phpdoc-parser": "^2.3",
"stripe/stripe-php": "*",
2026-03-04 21:52:29 +01:00
"symfony/asset": "8.0.*",
2026-03-04 21:52:21 +01:00
"symfony/console": "8.0.*",
2026-03-04 21:52:29 +01:00
"symfony/doctrine-messenger": "8.0.*",
2026-03-04 21:52:21 +01:00
"symfony/dotenv": "8.0.*",
2026-03-04 21:52:29 +01:00
"symfony/expression-language": "8.0.*",
2026-03-04 21:52:21 +01:00
"symfony/flex": "^2",
2026-03-04 21:52:29 +01:00
"symfony/form": "8.0.*",
2026-03-04 21:52:21 +01:00
"symfony/framework-bundle": "8.0.*",
2026-03-04 21:52:29 +01:00
"symfony/http-client": "8.0.*",
"symfony/intl": "8.0.*",
"symfony/mailer": "8.0.*",
"symfony/mime": "8.0.*",
"symfony/monolog-bundle": "^3.0|^4.0",
"symfony/notifier": "8.0.*",
"symfony/process": "8.0.*",
"symfony/property-access": "8.0.*",
"symfony/property-info": "8.0.*",
"symfony/redis-messenger": "8.0.*",
2026-03-04 21:52:21 +01:00
"symfony/runtime": "8.0.*",
2026-03-04 21:52:29 +01:00
"symfony/security-bundle": "8.0.*",
"symfony/serializer": "8.0.*",
"symfony/string": "8.0.*",
"symfony/translation": "8.0.*",
"symfony/twig-bundle": "8.0.*",
"symfony/validator": "8.0.*",
"symfony/web-link": "8.0.*",
"symfony/yaml": "8.0.*",
"twig/cssinliner-extra": "^3.23",
2026-03-04 21:52:29 +01:00
"twig/extra-bundle": "^2.12|^3.0",
"twig/inky-extra": "^3.23",
"twig/twig": "^2.12|^3.0",
"vich/uploader-bundle": "^2.9"
2026-03-04 21:52:21 +01:00
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"endroid/installer": true
2026-03-04 21:52:21 +01:00
},
"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"
2026-03-04 21:52:21 +01:00
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.0.*"
}
2026-03-04 21:52:29 +01:00
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1",
2026-03-04 21:52:29 +01:00
"phpunit/phpunit": "^13.0",
"symfony/browser-kit": "8.0.*",
"symfony/css-selector": "8.0.*",
"symfony/debug-bundle": "8.0.*",
"symfony/maker-bundle": "^1.0",
"symfony/stopwatch": "8.0.*",
"symfony/web-profiler-bundle": "8.0.*"
2026-03-04 21:52:21 +01:00
}
}