-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "jcergolj/extra-checks-for-spatie-laravel-server-monitor",
"description": "Additional custom checks for Spatie laravel-server-monitor package",
"license": "MIT",
"authors": [
{
"name": "Janez Cergolj",
"email": "me@jcergolj.me.uk"
}
],
"minimum-stability": "dev",
"prefer-stable" : true,
"autoload": {
"psr-4": {
"Jcergolj\\CustomChecks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jcergolj\\CustomChecks\\Tests\\": "tests/"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"analyse": [
"@pint"
]
},
"require-dev": {
"laravel/pint": "^1.9",
"phpunit/phpunit": "^10.1",
"orchestra/testbench": "^8.5",
"spatie/laravel-server-monitor": "^1.9"
}
}