-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
30 lines (30 loc) · 893 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
{
"name": "symplify/monorepo-split",
"license": "MIT",
"description": "GitHub Action for splitting monorepo. Composer is for testing PHP code only, not for package shipment",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.8.5",
"phpstan/extension-installer": "^1.1",
"symplify/phpstan-extensions": "^11.1",
"symplify/phpstan-rules": "^11.1",
"symplify/easy-coding-standard": "^11.1"
},
"autoload-dev": {
"files": [
"src/autoload.php"
]
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}