-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
68 lines (68 loc) · 2.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "php-parallel-lint/php-parallel-lint",
"description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
"license": "BSD-2-Clause",
"keywords": [
"lint",
"static analysis"
],
"authors": [
{
"name": "Jakub Onderka",
"email": "[email protected]"
},
{
"name" : "Contributors",
"homepage" : "https://github.com/php-parallel-lint/PHP-Parallel-Lint/graphs/contributors"
}
],
"require": {
"php": ">=5.3.0",
"ext-json": "*"
},
"replace": {
"grogy/php-parallel-lint": "*",
"jakub-onderka/php-parallel-lint": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.1",
"php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
"php-parallel-lint/php-code-style": "^2.0"
},
"suggest": {
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
},
"autoload": {
"psr-4": {
"PHP_Parallel_Lint\\PhpParallelLint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHP_Parallel_Lint\\PhpParallelLint\\Tests\\": "tests/"
}
},
"bin": [
"parallel-lint"
],
"scripts": {
"test": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"test10": "@php ./vendor/phpunit/phpunit/phpunit -c phpunit10.xml.dist --no-coverage",
"coverage": "@php ./vendor/phpunit/phpunit/phpunit",
"coverage10": "@php ./vendor/phpunit/phpunit/phpunit -c phpunit10.xml.dist"
},
"scripts-descriptions": {
"test": "Run all tests! ( PHPUnit < 10)",
"test10": "Run all tests! ( PHPUnit 10+)",
"coverage": "Run all tests *with code coverage* ( PHPUnit < 10)",
"coverage10": "Run all tests *with code coverage* ( PHPUnit 10+)"
}
}