forked from patricpoba/mnotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 849 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
{
"name": "patricpoba/mnotify",
"description": "API for sending sms using mnotify.com as the service provider",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Patric Poba",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PatricPoba\\Mnotify\\": "src/",
"PatricPoba\\": "src/"
}
},
"require": {
"php": ">=5.6.0",
"illuminate/support": "5.4 || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0.0 || ^7.4.0",
"mockery/mockery": "~1.0.0",
"orchestra/testbench": "3.5.* || 3.6.* || 3.7.*"
},
"extra": {
"laravel": {
"providers": [
"PatricPoba\\Mnotify\\MnotifyServiceProvider"
],
"aliases": {
"Sms": "PatricPoba\\Mnotify\\Facades\\Sms"
}
}
}
}