-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.66 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
{
"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.0"
},
"autoload": {
"psr-4": {
"IWFWeb\\CodingStandard\\": "src/",
"IWF\\CodingStandard\\": "src/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"archive": {
"exclude": [
".devcontainer",
".github",
".vscode",
".editorconfig",
".gitignore",
".gitattributes",
"CODEOWNERS",
"*.md",
"*.dist.php",
"*release*.json",
"!README.md",
"!CHANGELOG.md"
]
}
}