forked from JakubOnderka/PHP-Parallel-Lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "php-parallel-lint/php-parallel-lint",
"description": "This tool check syntax of PHP files about 20x faster than serial check.",
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Jakub Onderka",
"email": "ahoj@jakubonderka.cz"
}
],
"require": {
"php": ">=5.3.0",
"ext-json": "*"
},
"replace": {
"grogy/php-parallel-lint": "*",
"jakub-onderka/php-parallel-lint": "*"
},
"require-dev": {
"nette/tester": "^1.3 || ^2.0",
"php-parallel-lint/php-console-highlighter": "~0.3",
"squizlabs/php_codesniffer": "^3.6"
},
"suggest": {
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
},
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"./"
]
},
"bin": [
"parallel-lint"
],
"scripts": {
"test": "@php vendor/bin/tester -C -p php tests",
"testphp5": "@php vendor/bin/tester -c tests/php5.3-5.5.ini -p php tests"
},
"scripts-descriptions": {
"test": "Run all tests!"
}
}