44 lines
1.1 KiB
JSON
44 lines
1.1 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"
|
|
},
|
|
"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"
|
|
},
|
|
"scripts": {
|
|
"tests": "./vendor/bin/phpunit -c phpunit.xml.dist"
|
|
}
|
|
}
|