-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 1014 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "hinet/laravel-sms",
"description": "SMS gateway package for laravel,supports Alibaba cloud SMS, Tencent cloud SMS, SendCloud SMS and Baidu cloud SMS. It is easy to expand and you can freely define your own gateway driver.",
"keywords": ["sms", "mobile", "phone", "laravel", "laravel sms", "短信"],
"license": "MIT",
"require": {
"php": "^7.2.5|^7.3|^8.0|^8.1",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0",
"alibabacloud/client": "~1.5"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^9.4"
},
"authors": [
{
"name": "hinet",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Hinet\\Sms\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Hinet\\Sms\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev"
}