-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.89 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.89 KB
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
{
"name": "ohdearapp/ohdear-cli",
"description": "A standalone CLI tool for Oh Dear monitoring.",
"keywords": ["ohdear", "cli", "monitoring", "uptime"],
"homepage": "https://ohdear.app",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/ohdearapp/ohdear-cli/issues",
"source": "https://github.com/ohdearapp/ohdear-cli"
},
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {
"illuminate/http": "^12.17",
"laravel-zero/framework": "^12.0.2",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.25.1",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.8.4|^4.1.2",
"pestphp/pest-plugin-arch": "^3.0|^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"spatie/laravel-openapi-cli": "^1.0.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["builds/ohdear"]
}