-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 847 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 847 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
29
30
31
32
33
{
"name": "dragorww/php-lint",
"description": "An AST-based pattern checker for PHP.",
"keywords": ["ast", "lint", "php", "parser"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreev Sergey",
"email": "DragorWW@gmail.com"
}
],
"autoload": {
"psr-4": {"PhpLint\\": "lib/"}
},
"scripts": {
"test": "phpunit --testdox ./test",
"lint": "./bin/php-lint ./lib/"
},
"require": {
"php": ">=7.0",
"nikic/php-parser": "dev-master",
"symfony/console": "^3.2",
"symfony/finder": "^3.2",
"symfony/config": "^3.2",
"symfony/yaml": "^3.2",
"nicmart/string-template": "^0.1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.1"
},
"bin": ["bin/php-lint"]
}