-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 3.57 KB
/
composer.json
File metadata and controls
107 lines (107 loc) · 3.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "wayofdev/phony",
"description": "PHP package template with GitHub Actions",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "lotyp",
"email": "the@wayof.dev"
}
],
"homepage": "https://wayof.dev",
"support": {
"issues": "https://github.com/wayofdev/phony/issues",
"source": "https://github.com/wayofdev/phony"
},
"require": {
"php": "^8.3",
"ext-intl": "*",
"ext-mbstring": "*",
"ergebnis/composer-normalize": "^2.48",
"ergebnis/json": "^1.6",
"ergebnis/json-normalizer": "^4.10",
"ergebnis/json-printer": "^3.8",
"friendsofphp/php-cs-fixer": "^3.92",
"maglnet/composer-require-checker": "^4.20",
"symfony/console": "^7.4"
},
"require-dev": {
"ergebnis/phpunit-slow-test-detector": "^2.20",
"pestphp/pest": "^4.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.5",
"psalm/plugin-phpunit": "^0.19",
"rector/rector": "^2.3",
"roave/infection-static-analysis-plugin": "^1.43",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^6.14",
"wayofdev/cs-fixer-config": "^1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WayOfDev\\Phony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\Tests\\": "tests/src/"
}
},
"bin": [
"bin/phony"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"infect": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --with-uncovered --verbose"
],
"infect:ci": [
"@putenv XDEBUG_MODE=coverage",
"roave-infection-static-analysis-plugin --ansi --logger-github --ignore-msi-with-no-mutations --with-uncovered"
],
"psalm": "psalm --show-info=true",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"stan": "phpstan analyse --memory-limit=2G",
"stan:baseline": "phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
"stan:ci": "phpstan analyse --memory-limit=2G --error-format=github",
"test": [
"@putenv XDEBUG_MODE=coverage",
"pest --color=always -v"
],
"test:arch": [
"@putenv XDEBUG_MODE=coverage",
"pest --color=always --configuration pest.xml.dist"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
]
}
}