generated from yii2-extensions/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.27 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "php-forge/coding-standard",
"type": "library",
"description": "Coding standards for PHP projects.",
"keywords": [
"coding-standard",
"php",
"yii2"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"rector/rector": "^2.1",
"symplify/easy-coding-standard": "^13.0"
},
"autoload": {
"psr-4": {
"PHPForge\\CodingStandard\\": "./"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"ecs": "./vendor/bin/ecs --fix",
"sync-metadata": [
"curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig",
"curl -fsSL -o .gitattributes https://raw.githubusercontent.com/yii2-extensions/template/main/.gitattributes",
"curl -fsSL -o .gitignore https://raw.githubusercontent.com/yii2-extensions/template/main/.gitignore",
"curl -fsSL -o .styleci.yml https://raw.githubusercontent.com/yii2-extensions/template/main/.styleci.yml"
],
"rector": "./vendor/bin/rector process"
}
}