-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 746 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 746 Bytes
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
{
"name": "kwvanderlinde/peg",
"description": "PEG generator for PHP",
"keywords": ["PEG", "parser", "DSL", "compiler"],
"homepage": "https://github.com/kwvanderlinde/php-peg",
"type": "library",
"license": ["BSD-2"],
"authors": [
{
"name": "Kenneth VanderLinde",
"email": "kwvanderlinde@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"php-base/exceptions": "^1.0"
},
"version" : "0.0.0",
"bin": ["cli.php"],
"autoload": {
"psr-4": {
"Kwv\\Peg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Kwv\\Peg\\": "tests/src/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"phake/phake": "^3.0"
}
}