-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
68 lines (68 loc) · 1.85 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": "parsica-php/parsica",
"type": "library",
"description": "The easiest way to build robust parsers in PHP.",
"keywords": [
"parser",
"parser-combinator",
"parser combinator",
"parsing"
],
"homepage": "https://parsica-php.github.io/",
"license": "MIT",
"authors": [
{
"name": "Mathias Verraes",
"email": "[email protected]",
"homepage": "https://verraes.net"
},
{
"name": "Toon Daelman",
"email": "[email protected]",
"homepage": "https://github.com/turanct"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*",
"cypresslab/php-curry": "^0.5.0"
},
"require-dev": {
"ext-json": "*",
"mathiasverraes/uptodocs": "dev-main",
"phpunit/phpunit": "^9.0",
"phpbench/phpbench": "^1.0.1",
"psr/event-dispatcher": "^1.0",
"vimeo/psalm": "^4.1"
},
"autoload": {
"psr-4": {
"Parsica\\Parsica\\": "src/"
},
"files": [
"src/characters.php",
"src/combinators.php",
"src/numeric.php",
"src/predicates.php",
"src/primitives.php",
"src/recursion.php",
"src/sideEffects.php",
"src/space.php",
"src/strings.php",
"src/Expression/expression.php",
"src/Internal/FP.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Verraes\\Parsica\\": "tests/"
}
},
"scripts": {
"test": ["@phpunit", "@psalm", "@uptodocs"],
"phpunit": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm",
"uptodocs": "docs/testdocs",
"benchmark": "phpbench run benchmarks --report=aggregate"
}
}