-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
79 lines (79 loc) · 2.36 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
{
"name": "okipa/laravel-supervisor-downtime-notifier",
"description": "Get notified when supervisor is down.",
"keywords": [
"okipa",
"package",
"php",
"laravel",
"supervisor",
"service",
"process",
"processes",
"worker",
"workers",
"down",
"downtime",
"notify",
"notifier",
"laravel-supervisor-downtime-notifier"
],
"homepage": "https://github.com/Okipa/laravel-supervisor-downtime-notifier",
"license": "MIT",
"authors": [
{
"name": "Arthur LORENT",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "8.1.*|8.2.*",
"illuminate/contracts": "^9.0|^10.0"
},
"require-dev": {
"brianium/paratest": "^6.4",
"laravel-notification-channels/webhook": "^2.4",
"laravel/slack-notification-channel": "^2.5",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0|^8.0",
"phpmd/phpmd": "^2.11",
"roave/security-advisories": "dev-latest",
"laravel/pint": "^1.1"
},
"autoload": {
"psr-4": {
"Okipa\\LaravelSupervisorDowntimeNotifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Okipa\\LaravelSupervisorDowntimeNotifier\\Test\\": "tests/"
}
},
"scripts": {
"pint": ["vendor/bin/pint"],
"phpmd": "vendor/bin/phpmd config,src,tests text phpmd.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"phpunit" : "vendor/bin/testbench package:test --parallel --no-coverage",
"test": ["@pint", "@phpmd", "@phpstan", "@phpunit"]
},
"suggest": {
"guzzlehttp/guzzle": "Required for sending notifications via Slack",
"laravel/slack-notification-channel": "Required for sending notifications via Slack",
"laravel-notification-channels/webhook": "Required for sending notifications via Webhook"
},
"extra": {
"laravel": {
"providers": [
"Okipa\\LaravelSupervisorDowntimeNotifier\\SupervisorDowntimeNotifierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}