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