forked from WalterWoshid/php-dissect
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.53 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": "goaop/dissect",
"description": "A set of tools for lexical and syntactical analysis written in pure PHP",
"version": "3.0.0",
"type": "library",
"homepage": "https://github.com/goaop/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-coverage": "phpunit --coverage-html tests/coverage"
},
"require": {
"php": "^8.2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0.3",
"rector/rector": "^1.0",
"symfony/console": ">=6.0"
},
"suggest": {
"symfony/console": "for the command-line tool"
},
"autoload": {
"psr-4": {
"Dissect\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Dissect\\": [
"tests/"
]
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"sort-packages": true
}
}