forked from laravel-notification-channels/smsc-ru
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "sbudah/panaceamobile",
"description": "PanaceaMobile Notifications driver.",
"keywords": ["laravel", "notifications", "smscentre", "smsc"],
"homepage": "https://github.com/sbudah/panaceamobile",
"license": "MIT",
"authors": [
{
"name": "Sibusiso Mbuli",
"role": "Developer",
"email": "sibusiso@mbu.li"
}
],
"require": {
"php": ">=5.6.4",
"guzzlehttp/guzzle": "~6.0",
"illuminate/notifications": "^5.3@dev",
"illuminate/queue": "^5.3@dev",
"illuminate/support": "^5.3@dev"
},
"require-dev": {
"phpunit/phpunit": "~4",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"NotificationChannels\\PanaceaMobile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\PanaceaMobile\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev"
}