-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.49 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
{
"name": "walterwoshid/dissect",
"description": "A set of tools for lexical and syntactical analysis written in pure PHP - Fork by WalterWoshid",
"type": "library",
"homepage": "https://github.com/jakubledl/dissect",
"license": "MIT",
"authors": [
{
"name": "Jakub Lédl",
"email": "[email protected]",
"homepage": "https://github.com/jakubledl"
},
{
"name": "WalterWoshid",
"email": "[email protected]",
"homepage": "https://github.com/WalterWoshid"
}
],
"keywords": [
"lexing",
"parsing",
"ast",
"parser"
],
"bin": [
"bin/dissect.php",
"bin/dissect"
],
"scripts": {
"test": "phpunit",
"test-php-8.0": "phpunit --configuration phpunit-9.6.xml",
"test-coverage": "phpunit --coverage-html tests/coverage",
"test-coverage-php-8.0": "phpunit --configuration phpunit-9.6.xml --coverage-html tests/coverage"
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"symfony/console": ">=6.0",
"phpunit/phpunit": ">=9"
},
"suggest": {
"symfony/console": "for the command-line tool"
},
"autoload": {
"psr-0": {
"Dissect\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-0": {
"Dissect\\": [
"tests/"
]
}
}
}