-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 897 Bytes
/
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
{
"name": "tmilos/gold-parser",
"description": "Golder parser PHP runtime LALR engine and compiled grammar loader",
"keywords": ["gold parser", "LALR parser", "compiled grammar"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Milos Tomic",
"email": "[email protected]",
"homepage": "https://github.com/tmilos/",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Tests\\Tmilos\\GolderParser\\": "tests/",
"Tmilos\\GoldParser\\": "src/"
}
},
"require": {
"php": ">=5.6.1",
"tmilos/value": "^1.0",
"symfony/event-dispatcher": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.6",
"satooshi/php-coveralls": "~1.0"
},
"prefer-stable": true,
"minimum-stability": "stable"
}