-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 882 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 882 Bytes
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
{
"name": "imbo/imbo-coding-standard",
"type": "library",
"description": "Imbo coding standard for PHP-CS-Fixer",
"keywords": [
"imbo"
],
"homepage": "https://imbo.io/",
"license": "MIT",
"authors": [
{
"name": "Christer Edvartsen",
"homepage": "https://github.com/christeredvartsen"
},
{
"name": "Contributors",
"homepage": "https://github.com/imbo/imbo-coding-standard/graphs/contributors"
}
],
"require": {
"php": ">=8.3",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.35"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.92"
},
"autoload": {
"psr-4": {
"Imbo\\CodingStandard\\": "src/"
}
},
"scripts": {
"ci": "@cs",
"cs": "vendor/bin/php-cs-fixer check --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix --diff"
},
"config": {
"sort-packages": true
}
}