-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "iwf-web/php-coding-standard",
"description": "Configs & RuleSets for PHP Code",
"type": "library",
"keywords": [
"php-cs-fixer",
"style",
"coding-standard",
"ruleset"
],
"homepage": "https://github.com/iwf-web/php-coding-standard",
"license": "MIT",
"authors": [
{
"name": "D3strukt0r",
"email": "dev@d3strukt0r.dev",
"homepage": "https://github.com/D3strukt0r",
"role": "Maintainer"
}
],
"support": {
"email": "developer@iwf.ch",
"issues": "https://github.com/iwf-web/php-coding-standard/issues",
"forum": "https://github.com/iwf-web/php-coding-standard/discussions",
"wiki": "https://github.com/iwf-web/php-coding-standard/wiki",
"source": "https://github.com/iwf-web/php-coding-standard",
"docs": "https://github.com/iwf-web/php-coding-standard/blob/main/README.md"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88"
},
"autoload": {
"psr-4": {
"IWFWeb\\CodingStandard\\": "src/",
"IWF\\CodingStandard\\": "src/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff -v",
"cs:fix": "php-cs-fixer fix"
}
}