-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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": "loophp/phptree-ast-generator",
"type": "library",
"description": "Generates AST of a PHP script in DOT (Graphviz) or Image (PNG, JPG, SVG) formats.",
"keywords": [
"ast",
"tree",
"graph",
"abstract syntax tree"
],
"license": "MIT",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"require": {
"php": ">= 7.1",
"loophp/phptree": "^2.6.2",
"nikic/php-parser": "^4.3.0",
"symfony/console": "^4 || ^5 || ^6"
},
"require-dev": {
"drupol/php-conventions": "^6.0.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.0.0",
"infection/infection": "^0.13.6 || ^0.15.3 || ^0.26.0",
"microsoft/tolerant-php-parser": "^0.1.0",
"phpspec/phpspec": "^5.1.2 || ^6.1.1 || ^7.0.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"loophp\\PhptreeAstGenerator\\": "src/"
}
},
"bin": [
"bin/ast"
],
"scripts": {
"grumphp": "./vendor/bin/grumphp run",
"infection": "./vendor/bin/infection run"
}
}