generated from Sikessem/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 2.21 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
80
81
82
83
84
85
86
87
{
"name": "sikessem/skeleton",
"description": "📦️ Sikessem library builder template.",
"homepage": "https://sikessem.github.io/packages/skeleton",
"license": "MIT",
"keywords": [
"sikessem",
"package-skeleton",
"repository-template",
"php"
],
"authors": [
{
"name": "SIGUI Kessé Emmanuel",
"email": "[email protected]",
"homepage": "https://sigui.ci"
}
],
"support": {
"source": "https://github.com/sikessem/skeleton",
"issues": "https://github.com/sikessem/skeleton/issues",
"chat": "https://github.com/orgs/sikessem/discussions"
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"sikessem/devtools": "^0.8.0"
},
"autoload": {
"psr-4": {
"Sikessem\\Skeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sikessem\\Skeleton\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --ansi --memory-limit=-1 --debug",
"check": "pint --test -v",
"debug": [
"@verify",
"@check",
"@analyse",
"@inspect",
"@review",
"@test"
],
"init:tools": [
"psalm --init",
"rector init",
"pest --init"
],
"fix": [
"@refactor",
"@improve",
"@format",
"@lint"
],
"format": "psalter --issues=all",
"improve": "phpinsights fix",
"inspect": "psalm --no-diff",
"lint": "pint -v",
"test": "pest --colors=always",
"review": "rector --dry-run --debug",
"refactor": "rector",
"verify": "phpinsights analyse"
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}