forked from Shaked/php.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 981 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 981 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
{
"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": "https://github.com/phpfmt/php.tools",
"bin": ["fmt.php","refactor.php","php.tools","aphpfmt"],
"authors": [
{
"name": "Carlos C",
"email": "phpfmt@users.noreply.github.com"
}
],
"support": {
"issues": "https://github.com/phpfmt/php.tools/issues",
"source": "https://github.com/phpfmt/php.tools"
},
"require":{
"php": ">=5.4.0",
"ext-tokenizer": "*"
},
"suggest": {
"phpunit/phpunit": "Execute tests using 'php.tools test'",
"phpdocumentor/phpdocumentor": "Document generation using 'php.tools doc'",
"exuberant/ctags": "For PHP target ctags generation"
}
}