forked from WalterWoshid/php-dissect
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.62 KB
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
69
70
{
"name": "goaop/dissect",
"description": "A set of tools for lexical and syntactical analysis written in pure PHP",
"type": "library",
"homepage": "https://github.com/goaop/dissect",
"license": "MIT",
"authors": [
{
"name": "Jakub Lédl",
"email": "jakubledl@gmail.com",
"homepage": "https://github.com/jakubledl"
},
{
"name": "WalterWoshid",
"email": "wotschel.valentin@googlemail.com",
"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",
"phpstan": "phpstan analyse"
},
"require": {
"php": "^8.4.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^13.0",
"rector/rector": "^2.0",
"symfony/console": "^7.4 || ^8.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": "4.0-dev"
}
},
"config": {
"sort-packages": true
}
}