dwoodauto-ding-notice/composer.json

41 lines
898 B
JSON
Raw Normal View History

2023-04-12 15:05:18 +08:00
{
2023-07-06 12:49:22 +08:00
"name": "ykxiao/dwoodauto-ding-notice",
2023-04-12 15:05:18 +08:00
"description": "a dingtalk robot message handle for send message",
"keywords": ["laravel", "ding talk", "ding notice"],
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.2|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"DingNotice\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"DingNotice\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"DingNotice\\DingNoticeServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "ykxiao",
"email": "yk_9001@gmail.com"
}
]
}