message-notify/composer.json
2022-10-27 16:54:56 +08:00

47 lines
1.1 KiB
JSON

{
"name": "tm-wms/message-notify",
"description": "基于hyperf 三方平台消息通知组件",
"license": "MIT",
"authors": [
{
"name": "zyimm",
"email": "zyimm.qq.com"
}
],
"autoload": {
"psr-4": {
"TmWms\\MessageNotify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TmWms\\MessageNotifyTest\\": "test/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"hyperf/guzzle": "^1.1|^2.1|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.4",
"hyperf/di": "^2.2|^3.0",
"hyperf/utils": "^2.2|^3.0",
"hyperf/config": "*",
"hyperf/ide-helper": "v2.2.*"
},
"scripts": {
"test": "phpunit -c phpunit.xml --colors=always",
"cs-fix": "./vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true
},
"extra": {
"hyperf": {
"config": "TmWms\\MessageNotify\\ConfigProvider"
}
}
}