1
0
mirror of synced 2024-11-21 20:36:08 +03:00
service-bundle/composer.json
2021-04-16 13:37:47 +03:00

50 lines
1.3 KiB
JSON

{
"name": "retailcrm/service-bundle",
"description": "Core bundle for RetailCRM integration services",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "RetailCRM",
"email": "support@retailcrm.pro"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.3",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/serializer": "^5.2",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.0",
"symfony/security-guard": "^4.0|^5.0",
"symfony/console": "^5.2",
"symfony/messenger": "^5.2",
"symfony/process": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/lock": "^5.2"
},
"autoload": {
"psr-4": {
"RetailCrm\\ServiceBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {
"RetailCrm\\ServiceBundle\\Tests\\": "Tests/"
}
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8.0 || ^9.0",
"doctrine/annotations": "^1.11",
"doctrine/cache": "^1.10",
"jms/serializer-bundle": "^3.8"
},
"scripts": {
"tests": "./vendor/bin/phpunit -c phpunit.xml.dist"
}
}