-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 778 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 778 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
{
"name": "didix16/php-interpreter",
"description": "A simple interpreter made in PHP. It allows to parse an abstract language tokens and do whatever you whant",
"version": "1.0.4",
"keywords": ["interpreter", "simple", "build", "abstract", "language"],
"type": "library",
"require": {
"didix16/php-grammar": "^1.0",
"didix16/php-datatransformer": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Dídac Rodríguez",
"email": "drodriguez816@gmail.com",
"homepage": "https://github.com/didix16",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"didix16\\Interpreter\\": "src/"
}
}
}