forked from Shaked/php.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 945 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
{
"name": "dericofilho/fmt",
"type": "application",
"description": "A script to automatically fix K&R and PSR-1/2 Coding Standard.",
"license": "BSD-3-Clause",
"keywords": ["language syntax", "formatter", "formatting", "psr1", "psr2", "coding", "style"],
"homepage": "http://www.cirello.org/php.tools/",
"bin": ["fmt.php","refactor.php","php.tools"],
"authors": [
{
"name": "Carlos C",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/dericofilho/php.tools/issues",
"source": "https://github.com/dericofilho/php.tools"
},
"require":{
"php": ">=5.4.0"
},
"suggest": {
"phpunit/phpunit": "Execute tests using 'php.tools test'",
"phpdocumentor/phpdocumentor": "Document generation using 'php.tools doc'",
"exuberant/ctags": "For PHP target ctags generation"
}
}