-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 934 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 934 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "ideato/idephix",
"description": "PHP automation and deploy tool.",
"type": "library",
"keywords": ["idephix", "idx", "automation", "deploy"],
"homepage": "http://getidephix.com/",
"license": "MIT",
"authors": [
{
"name": "Manuel Baldassarri",
"email": "mb@ideato.it",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/ideato/idephix/issues"
},
"require": {
"php": ">=5.3.9",
"symfony/console": "~2.3",
"symfony/process": "~2.3",
"nikic/php-parser": "^1.3",
"symfony/options-resolver": "^2.1"
},
"require-dev": {
"mikey179/vfsstream": "1.3.*@dev"
},
"bin": [
"bin/idx"
],
"config": {
"bin-dir": "bin"
},
"autoload": {
"files": ["src/Idephix/bootstrap.php"],
"psr-0": {"Idephix": "src/"}
}
}