-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 930 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
33
34
35
36
{
"name": "in2pire/cli-compiler",
"type": "project",
"description": "IN2PIRE CLI Compiler",
"license": "MIT",
"keywords": ["in2pire", "inspire", "cli", "console", "compiler"],
"authors": [
{
"name": "Nhat Tran",
"email": "nhat.tran@inspire.vn",
"homepage": "http://inspire.vn",
"role": "Founder"
}
],
"support": {
"email": "nhat.tran@inspire.vn"
},
"require": {
"php": ">=5.4",
"seld/jsonlint": "@stable",
"symfony/process": "2.7.x",
"symfony/finder": "2.7.x",
"in2pire/cli": ">=1.9.0",
"in2pire/utility": ">=1.0.3"
},
"autoload": {
"psr-4": {
"In2pire\\Compiler\\": "src/In2pire/Compiler/"
}
},
"config": {
"bin-dir": "bin/",
"vendor-dir": "vendor/",
"autoloader-suffix": "In2pireCliCompiler"
}
}