-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 870 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 870 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
{
"name": "suin/php-cs-fixer-rules",
"type": "library",
"description": "A Rule set for PHP-CS-Fixer mainly targeting PHP 7.1 or higher.",
"keywords": [
"php-cs-fixer",
"rules"
],
"homepage": "https://github.com/suin/php",
"license": "MIT",
"authors": [
{
"name": "suin",
"email": "suinyeze@gmail.com",
"homepage": "https://github.com/suin",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"support": {
"issues": "https://github.com/suin/php/issues"
},
"require": {
"php": ">=7.1"
},
"conflict": {
"friendsofphp/php-cs-fixer": "<2.13"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"sort-packages": true
}
}