-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.24 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "php-forge/coding-standard",
"type": "library",
"description": "Centralized ECS and Rector configurations for PHP projects.",
"keywords": [
"coding-standard",
"ecs",
"php",
"rector",
"scaffold-provider"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3",
"rector/rector": "^2.1",
"symplify/easy-coding-standard": "^13.0"
},
"require-dev": {
"php-forge/baseline": "^0.1",
"yii2-extensions/scaffold": "^0.1"
},
"autoload": {
"psr-4": {
"PHPForge\\CodingStandard\\": "./"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.4.x-dev"
},
"scaffold": {
"manifest": "scaffold.json",
"allowed-packages": [
"php-forge/baseline"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yii2-extensions/scaffold": true
}
},
"scripts": {
"ecs": "./vendor/bin/ecs check src --config src/ecs-83.php --fix",
"rector": "./vendor/bin/rector process src --config src/rector-83.php"
}
}