This repository was archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (53 loc) · 1.48 KB
/
composer.json
File metadata and controls
54 lines (53 loc) · 1.48 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hyperion/workflow",
"type": "project",
"description": "Hyperion Workflow Controller",
"autoload": {
"psr-0": { "": ["src/", "tests/"] }
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:jordonsc/hyperion_dbal.git"
},
{
"type": "vcs",
"url": "git@github.com:bravo3/bakery.git"
}
],
"require": {
"php": ">=5.5.0",
"symfony/yaml": "~2.5.6",
"symfony/event-dispatcher": "~2.5.6",
"symfony/console": "~2.5.6",
"symfony/dependency-injection": "~2.5.6",
"symfony/config": "~2.5.6",
"aws/aws-sdk-php": "~2.6",
"bravo3/standards": "~1.0",
"bravo3/cache": "~0.1",
"hyperion/dbal": "~0.0.12@beta",
"bravo3/bakery": "~0.0.24@beta",
"bravo3/cloud-controller": "~0.1.2@beta",
"predis/predis": "~0.8",
"incenteev/composer-parameter-handler": "~2.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"minimum-stability": "beta",
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
},
"extra": {
"incenteev-parameters": { "file": "app/parameters.yml" }
}
}