2021-02-05 14:47:54 +03:00
|
|
|
{
|
|
|
|
"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",
|
2021-03-31 11:00:48 +03:00
|
|
|
"symfony/security-guard": "^4.0|^5.0",
|
|
|
|
"symfony/console": "^5.2",
|
|
|
|
"symfony/messenger": "^5.2",
|
|
|
|
"symfony/process": "^5.2",
|
2021-04-16 13:37:47 +03:00
|
|
|
"symfony/event-dispatcher": "^5.2",
|
|
|
|
"symfony/lock": "^5.2"
|
2021-02-05 14:47:54 +03:00
|
|
|
},
|
|
|
|
"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",
|
2021-02-17 09:31:36 +03:00
|
|
|
"doctrine/cache": "^1.10",
|
|
|
|
"jms/serializer-bundle": "^3.8"
|
2021-02-05 14:47:54 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"tests": "./vendor/bin/phpunit -c phpunit.xml.dist"
|
|
|
|
}
|
|
|
|
}
|