futtern/composer.json

99 lines
2.7 KiB
JSON
Raw Permalink Normal View History

2024-06-10 17:16:55 +00:00
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
2024-06-10 18:22:44 +00:00
"php": ">=8.3",
2024-06-10 17:16:55 +00:00
"ext-ctype": "*",
"ext-iconv": "*",
2024-08-18 07:19:12 +00:00
"doctrine/dbal": "^4.1",
2024-06-10 17:16:55 +00:00
"doctrine/doctrine-bundle": "^2.12",
2024-08-18 07:19:12 +00:00
"doctrine/doctrine-migrations-bundle": "^3.3.1",
"doctrine/orm": "^3.2.1",
2024-07-10 20:18:56 +00:00
"psr/clock": "^1.0",
2024-06-10 17:16:55 +00:00
"symfony/console": "7.1.*",
"symfony/dotenv": "7.1.*",
2024-08-18 07:19:12 +00:00
"symfony/flex": "^2.4.6",
2024-06-10 18:22:44 +00:00
"symfony/form": "7.1.*",
2024-06-10 17:16:55 +00:00
"symfony/framework-bundle": "7.1.*",
"symfony/runtime": "7.1.*",
2024-06-10 18:22:44 +00:00
"symfony/security-csrf": "7.1.*",
"symfony/twig-bundle": "7.1.*",
2024-06-10 17:16:55 +00:00
"symfony/uid": "7.1.*",
2024-06-10 18:22:44 +00:00
"symfony/validator": "7.1.*",
2024-06-10 17:16:55 +00:00
"symfony/yaml": "7.1.*"
},
"require-dev": {
2024-09-15 20:11:42 +00:00
"infection/infection": "^0.29.6",
2024-08-18 07:19:12 +00:00
"lubiana/code-quality": "^1.7.2",
"phpunit/phpunit": "^9.6.20",
2024-06-10 17:16:55 +00:00
"symfony/browser-kit": "7.1.*",
"symfony/css-selector": "7.1.*",
"symfony/maker-bundle": "^1.60",
2024-08-18 07:19:12 +00:00
"symfony/phpunit-bridge": "^7.1.3",
"symplify/config-transformer": "^12.3.4"
2024-06-10 17:16:55 +00:00
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
2024-09-15 20:11:42 +00:00
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
2024-06-10 17:16:55 +00:00
},
2024-06-10 18:22:44 +00:00
"sort-packages": true,
"platform": {
"php": "8.3"
}
2024-06-10 17:16:55 +00:00
},
"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",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
2024-06-15 20:36:31 +00:00
"@auto-scripts"
2024-06-10 17:16:55 +00:00
],
"post-update-cmd": [
2024-06-15 20:36:31 +00:00
"@auto-scripts",
"config-transformer switch-format config"
2024-06-10 17:16:55 +00:00
],
"lint": [
"rector",
"ecs --fix || ecs --fix"
],
2024-09-15 20:11:42 +00:00
"test": "bin/phpunit",
"mutation": "infection --threads=8 --show-mutations"
2024-06-10 17:16:55 +00:00
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.1.*"
}
}
}