-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
43 lines (43 loc) · 1.03 KB
/
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
38
39
40
41
42
43
{
"name": "yugo/smsgateway",
"description": "SMS gateway for Laravel using various vendors (SMSGateway.me, Zenziva, etc)",
"keywords": [
"smsgateway",
"laravel",
"sms"
],
"homepage": "https://github.com/arvernester/smsgateway",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dedy Yugo Purwanto",
"email": "dedy.yugo.purwanto@gmail.com",
"homepage": "https://laravel.web.id",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"laravel/framework": ">=5.4",
"mashape/unirest-php": "3.0.4"
},
"require-dev": {
"phpunit/phpunit": "7.1.5"
},
"autoload": {
"psr-0": {
"Yugo\\SMSGateway": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Yugo\\SMSGateway\\Providers\\SmsServiceProvider"
]
}
},
"support": {
"email": "dedy.yugo.purwanto@gmail.com"
}
}