forked from JakubOnderka/PHP-Parallel-Lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 791 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
{
"name": "jakub-onderka/php-parallel-lint",
"description": "This tool check syntax of PHP files about 20x faster than serial check.",
"homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint",
"license": "BSD-2-Clause",
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"nette/tester": "~1.3",
"jakub-onderka/php-console-highlighter": "~0.3",
"squizlabs/php_codesniffer": "~2.7"
},
"suggest": {
"jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet"
},
"authors": [
{
"name": "Jakub Onderka",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"./"
]
},
"bin": ["parallel-lint"]
}