-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.01 KB
/
composer.json
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": "styleci/fixer",
"description": "StyleCI Fixer Is A Code Style Report Builder",
"keywords": ["fixer", "cs", "report", "StyleCI", "StyleCI", "Fixer", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"fabpot/php-cs-fixer": "1.5.*,>1.5.0",
"styleci/config": "0.1.*",
"styleci/git": "0.1.*"
},
"require-dev": {
"graham-campbell/testbench": "~2.0"
},
"suggest": {
"illuminate/support": "Enables Laravel support (~5.0)."
},
"autoload": {
"psr-4": {
"StyleCI\\Fixer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StyleCI\\Tests\\Fixer\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}