-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 863 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
38
39
{
"name": "shafimsp/laravel-sms-notification-channel-mobilyws-driver",
"description": "MobilyWs Drive for Laravel SMS Notification Channel",
"keywords": [
"laravel",
"sms",
"notification",
"log",
"mobilyws"
],
"license": "MIT",
"authors": [
{
"name": "Muhammed Shafi",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^7.1.3",
"guzzlehttp/guzzle": "^6.3",
"illuminate/support": "~5.8.0|^6.0",
"shafimsp/laravel-sms-notification-channel": "^1.0@alpha"
},
"autoload": {
"psr-4": {
"Shafimsp\\SmsNotificationChannel\\MobilyWs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Shafimsp\\SmsNotificationChannel\\MobilyWs\\MobilyWsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}