-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
64 lines (64 loc) · 1.57 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
61
62
63
64
{
"name": "nutnet/laravel-sms",
"description": "Package for sending SMS form your Laravel app, includes pre-installed sms providers and your custom.",
"require": {
"illuminate/support": ">=5.0"
},
"keywords": [
"sms",
"laravel sms",
"laravel smsc.ru",
"laravel sms.ru",
"laravel smpp",
"laravel iqsms"
],
"autoload": {
"psr-4": {
"Nutnet\\LaravelSms\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"illuminate/log": "Required for Log provider",
"franzose/laravel-smpp": "Required for SMPP provider",
"zelenin/smsru": "Required for Sms.Ru provider"
},
"conflict": {
"zelenin/smsru": "<5.0.0"
},
"extra": {
"laravel": {
"providers": [
"Nutnet\\LaravelSms\\ServiceProvider"
]
}
},
"require-dev": {
"zelenin/smsru": "^5.0",
"phpunit/phpunit": "^9.3",
"illuminate/log": ">=5.0",
"franzose/laravel-smpp": "^1.1",
"infection/infection": "^0.26",
"psr/log": "^1.0"
},
"scripts": {
"test": [
"phpunit"
],
"test-coverage": [
"phpdbg -qrr ./vendor/bin/phpunit --coverage-text"
],
"test-mutation": [
"PHP_BINARY=phpdbg phpdbg -qrr vendor/bin/infection --ansi"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}