forked from pear/PHP_ParserGenerator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "fpoirotte/php_parsergenerator",
"description": "Translate grammar files in Lemon Parser Generator format into a PHP 5 parser",
"type": "library",
"keywords": ["parser", "lemon", "lempar"],
"homepage": "https://github.com/fpoirotte/PHP_ParserGenerator",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Greg Beaver",
"email": "cellog@php.net",
"role": "lead"
},
{
"name": "François Poirotte",
"email": "clicky@erebot.net",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/fpoirotte/PHP_ParserGenerator/issues",
"source": "https://github.com/fpoirotte/PHP_ParserGenerator"
},
"require": {
"php": ">=5.1.0"
},
"provide": {
"pear/php_parsergenerator": "0.1.7"
},
"autoload": {
"psr-0": {
"PHP": ""
}
},
"bin": ["phplemon"],
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}