forked from fpoirotte/PHP_ParserGenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.03 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "MobileAppTracking/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/MobileAppTracking/PHP_ParserGenerator",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Greg Beaver",
"email": "cellog@php.net",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/MobileAppTracking/PHP_ParserGenerator/issues",
"source": "https://github.com/MobileAppTracking/PHP_ParserGenerator"
},
"require": {
"php": ">=5.1.0"
},
"provide": {
"MobileAppTracking/php_parsergenerator": "0.1.7",
"MobileAppTracking/php_parsergenerator": "0.1.7-patch1"
},
"autoload": {
"psr-0": {
"PHP": ""
}
},
"bin": ["phplemon"],
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}