message-notify/composer.json
2022-10-27 16:57:06 +08:00

48 lines
1.2 KiB
JSON

{
"name": "tm-wms/message-notify",
"description": "基于hyperf 三方平台消息通知组件,支持钉钉群机器人、飞书群机器人、企业微信群机器人",
"license": "MIT",
"Keywords": ["wms", "钉钉", "微信", "飞书"],
"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"
}
}
}