-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.91 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.91 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
66
67
68
69
70
71
72
{
"name": "laravel/doctor",
"description": "First-party diagnostics for Laravel applications",
"keywords": ["laravel", "doctor", "diagnostics", "health", "configuration"],
"homepage": "https://github.com/laravel/doctor",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/doctor/issues",
"source": "https://github.com/laravel/doctor"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^8.3",
"composer-runtime-api": "^2.0",
"composer/semver": "^3.0",
"illuminate/console": "^12.0|^13.0",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/process": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"laravel/agent-detector": "^2.0.1",
"laravel/prompts": "^0.3.21"
},
"require-dev": {
"laravel/pint": "^1.28.0",
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^4.0",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"Laravel\\Doctor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Doctor\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Doctor\\DoctorServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:types": "phpstan analyse",
"test:unit": "pest",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}