-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.62 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
57
58
59
60
{
"name": "nextsms/laravel",
"description": "This package makes it easy to send notifications via NextSMS with Laravel ",
"keywords": [
"nextsms",
"laravel",
"notification",
"notification-channel"
],
"homepage": "https://github.com/nextsms/laravel",
"license": "MIT",
"authors": [
{
"name": "Alpha Olomi",
"email": "[email protected]",
"homepage": "https://alphaolomi.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"illuminate/notifications": "~7.0 || ~8.0 || ~9.0 ",
"illuminate/support": "~7.0 || ~8.0 || ~9.0 ",
"nextsms/php-client": "dev-main"
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "~5.0 || ~6.0",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"NotificationChannels\\NextSms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\NextSms\\Test\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\NextSms\\NextSmsServiceProvider"
],
"aliases": {
"NextSmsService": "NotificationChannels\\NextSms\\NextSmsFacade"
}
}
}
}