generated from yardinternet/skeleton-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 894 Bytes
/
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
{
"name": "yard/php-cs-fixer-rules",
"type": "package",
"description": "Yard PHP CS Fixer rules",
"license": "MIT",
"keywords": [
"static analysis"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=7.4",
"ckr/arraymerger": "^3.0",
"friendsofphp/php-cs-fixer": "^3.64",
"webmozart/assert": "^1.11"
},
"require-dev": {
"pestphp/pest": "^2.36",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Yard\\PhpCsFixerRules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yard\\PhpCsFixerRules\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --debug --memory-limit 1G",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage"
}
}