1
0
mirror of synced 2024-11-22 04:56:07 +03:00
symfony-beanstalkd-messenger/composer.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2021-02-02 11:59:25 +03:00
{
2021-02-04 11:01:10 +03:00
"name": "retailcrm/symfony-beanstalkd-messenger",
2021-02-02 11:59:25 +03:00
"description": "Symfony Beanstalkd Messenger Bridge",
"type": "symfony-bridge",
"license": "MIT",
"authors": [
{
"name": "RetailCRM",
"email": "support@retailcrm.pro"
}
],
"support": {
"email": "support@retailcrm.pro"
},
"autoload": {
"psr-4": { "RetailCrm\\Messenger\\Beanstalkd\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "stable",
"require": {
"ext-json": "*",
2023-10-03 16:00:49 +03:00
"php": ">=7.3",
2021-02-02 11:59:25 +03:00
"pda/pheanstalk": "^4.0",
2023-10-03 16:00:49 +03:00
"symfony/messenger": "^5.0|^6.0"
2021-02-02 11:59:25 +03:00
},
"require-dev": {
2023-10-03 16:00:49 +03:00
"roave/security-advisories": "dev-latest",
2021-02-02 11:59:25 +03:00
"phpmd/phpmd": "^2.9",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"phpmd": "./vendor/bin/phpmd Transport text controversial,./phpmd.xml",
"phpcs": "./vendor/bin/phpcs -p Transport --runtime-set testVersion 7.2-8.0",
"tests": "./vendor/bin/phpunit -c phpunit.xml.dist"
}
}