forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 907 Bytes
/
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
{
"name": "fabpot/php-cs-fixer",
"type": "application",
"description": "A tool to automatically fix PHP code style",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
},
{
"name": "Dariusz Rumiński",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.6",
"ext-tokenizer": "*",
"symfony/console": "~2.3",
"symfony/event-dispatcher" : "~2.1",
"symfony/filesystem": "~2.1",
"symfony/finder": "~2.1",
"symfony/process": "~2.3",
"symfony/stopwatch": "~2.5",
"sebastian/diff": "~1.1"
},
"require-dev": {
"satooshi/php-coveralls": "0.7.*@dev"
},
"autoload": {
"psr-4": { "Symfony\\CS\\": "Symfony/CS/" }
},
"bin": ["php-cs-fixer"]
}