-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 1.1 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
44
{
"name": "iyngaran/sms-gateway",
"description": "It is a Laravel package which will serve as gateway to send SMS through various providers. It supports multiple sms gateways, and easily extendable to support new gateways.",
"type": "library",
"version": "1.0.6",
"keywords": [
"Laravel",
"Laravel SMS gateway",
"Nexmo",
"Twilio",
"MessageBird"
],
"require": {
"nexmo/client": "dev-master",
"twilio/sdk": "^5.29",
"messagebird/php-rest-api": "^1.13"
},
"license": "MIT",
"authors": [
{
"name": "Iyathurai Iyngaran",
"email": "dev@iyngaran.info"
}
],
"autoload": {
"psr-4": {
"Iyngaran\\SmsGateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iyngaran\\SmsGateway\\": "src/",
"Iyngaran\\SmsGatewayTest\\": "test/"
}
},
"extra": {
"laravel": {
"providers": [
"Iyngaran\\SmsGateway\\SmsServiceProvider"
]
}
},
"minimum-stability": "dev"
}