hesabixCore/composer.json

81 lines
2.1 KiB
JSON
Raw Normal View History

2023-01-17 10:33:36 +03:30
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
2023-02-11 22:58:54 +03:30
"doctrine/annotations": "^1.0",
2023-01-19 16:04:55 +03:30
"doctrine/doctrine-bundle": "^2.8",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.14",
2023-01-26 19:43:53 +03:30
"nelmio/cors-bundle": "^2.2",
2023-02-11 22:58:54 +03:30
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.16",
2023-01-17 10:33:36 +03:30
"symfony/console": "6.2.*",
"symfony/dotenv": "6.2.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.2.*",
2023-02-11 22:58:54 +03:30
"symfony/property-access": "6.2.*",
"symfony/property-info": "6.2.*",
2023-01-17 10:33:36 +03:30
"symfony/runtime": "6.2.*",
2023-01-19 16:04:55 +03:30
"symfony/security-bundle": "6.2.*",
2023-02-11 22:58:54 +03:30
"symfony/serializer": "6.2.*",
2023-01-26 19:43:53 +03:30
"symfony/yaml": "6.2.*",
"symfonycasts/verify-email-bundle": "^1.13"
2023-01-17 10:33:36 +03:30
},
"config": {
"allow-plugins": {
"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": "*"
},
"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": {
2023-01-26 19:43:53 +03:30
"allow-contrib": true,
2023-01-19 16:04:55 +03:30
"require": "6.2.*",
"docker": true
2023-01-17 10:33:36 +03:30
}
2023-01-19 16:04:55 +03:30
},
"require-dev": {
"symfony/maker-bundle": "^1.48"
2023-01-17 10:33:36 +03:30
}
}