-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
56 lines (56 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "gr8shivam/laravel-sms-api",
"version": "3.0.6",
"description": "Laravel package to provide SMS API integration. Any SMS vendor that provides REST API can be used. SMS-API channel for Laravel notifications also included.",
"license": "MIT",
"keywords": [
"laravel sms",
"laravel notifications",
"laravel sms sender",
"laravel sms notifications",
"laravel sms api",
"laravel sms web api"
],
"homepage": "https://github.com/gr8shivam/laravel-sms-api",
"authors": [
{
"name": "Shivam Agarwal",
"email": "gr8shivam25@gmail.com",
"homepage": "https://github.com/gr8shivam",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"guzzlehttp/guzzle": "~6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.3|^9.5.10",
"orchestra/testbench": "~3.0|^8.0"
},
"autoload": {
"psr-4": {
"Gr8Shivam\\SmsApi\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Gr8Shivam\\SmsApi\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Gr8Shivam\\SmsApi\\SmsApiServiceProvider"
],
"aliases": {
"SmsApi": "Gr8Shivam\\SmsApi\\SmsApiFacade"
}
}
}
}