-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
44 lines (44 loc) · 1.11 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": "matthewbdaly/laravel-sms",
"description": "A Laravel and Lumen integration for matthewbdaly/sms-client to enable sending SMS messages",
"type": "library",
"keywords": ["sms","laravel","lumen"],
"require": {
"matthewbdaly/sms-client": "^1.0"
},
"require-dev": {
"orchestra/testbench": "3.5",
"phpunit/phpunit": "^6.3",
"mockery/mockery": "^0.9.9",
"squizlabs/php_codesniffer": "^3.1",
"aws/aws-sdk-php": "3.*",
"psy/psysh": "^0.8.11"
},
"license": "MIT",
"authors": [
{
"name": "Matthew Daly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matthewbdaly\\LaravelSMS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Matthewbdaly\\LaravelSMS\\LaravelSMSProvider"
],
"aliases": {
"SMS": "Matthewbdaly\\LaravelSMS\\Facade"
}
}
}
}