-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.47 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "nunomaduro/skeleton-php",
"description": "A skeleton repository for my packages",
"keywords": ["php", "skeleton", "package"],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "enunomaduro@gmail.com"
}
],
"require": {
"php": "^8.5.0"
},
"require-dev": {
"laravel/pint": "^1.29.0",
"pestphp/pest": "^5.0.0",
"pestphp/pest-plugin-type-coverage": "^5.0.0",
"phpstan/phpstan": "^2.1.49",
"rector/rector": "^2.4.2",
"symfony/var-dumper": "^8.0.8"
},
"autoload": {
"psr-4": {
"NunoMaduro\\SkeletonPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": [
"pint --parallel",
"rector"
],
"test:type-coverage": "pest --type-coverage --min=100",
"test:lint": [
"pint --parallel --test",
"rector --dry-run"
],
"test:unit": "pest --parallel --coverage --exactly=100",
"test:types": "phpstan",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}