-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
84 lines (84 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "zing/laravel-sms",
"description": "Provides sms notification channel for Laravel.",
"keywords": ["sms", "laravel", "notification", "channel"],
"license": "MIT",
"homepage": "https://github.com/zingimmick/laravel-sms",
"support": {
"issues": "https://github.com/zingimmick/laravel-sms/issues",
"source": "https://github.com/zingimmick/laravel-sms"
},
"authors": [
{
"name": "zingimmick",
"email": "[email protected]",
"homepage": "https://github.com/zingimmick"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"graham-campbell/manager": "^4.3 || ^5.0",
"illuminate/console": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/notifications": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"overtrue/easy-sms": "^2.4.2 || ^3.0.0"
},
"require-dev": {
"composer/class-map-generator": "^1.0",
"mockery/mockery": "~1.3.3 || ^1.4.2",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-mockery": "^1.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0",
"zing/coding-standard": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Zing\\LaravelSms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zing\\LaravelSms\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Zing\\LaravelSms\\SmsServiceProvider"
],
"aliases": {
"Sms": "Zing\\LaravelSms\\Facades\\Sms"
}
}
},
"scripts": {
"lint:rector": "@fix:rector --dry-run",
"lint:ecs": "ecs check --ansi",
"lint:phpstan": "phpstan analyse --ansi",
"fix:rector": "rector process --ansi",
"fix:ecs": "@lint:ecs --fix",
"test:phpunit": "phpunit --colors=always",
"lint": [
"@lint:rector",
"@lint:ecs",
"@lint:phpstan"
],
"fix": [
"@fix:rector",
"@fix:ecs"
],
"test": [
"@test:phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}