forked from vladski/laravel-sms-clicksend
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
55 lines (55 loc) · 1.51 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
{
"name": "parkourben99/laravel-sms-clicksend",
"description": "ClickSend Notifications channel for Laravel 5.1+",
"keywords": ["laravel", "notifications", "clicksend", "sms"],
"homepage": "https://github.com/parkourben99/laravel-sms-clicksend",
"license": "MIT",
"authors": [
{
"name": "Vladimir Kundrat",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://github.com/vladski"
},
{
"name": "Benjamin Ayles",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://github.com/parkourben99"
}
],
"require": {
"php": ">=5.6.4",
"clicksend/clicksend-php": "4.0.*",
"illuminate/queue": "^5.1 || ^6.0",
"illuminate/notifications": "^5.1 || ^6.0",
"illuminate/support": "^5.1 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"mockery/mockery": "^0.9.5"
},
"autoload": {
"psr-4": {
"NotificationChannels\\ClickSend\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\ClickSend\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\ClickSend\\ClickSendServiceProvider"
]
}
}
}