-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json-legacy
58 lines (58 loc) · 2.27 KB
/
composer.json-legacy
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
54
55
56
57
58
{
"name": "teamdeeson/warden",
"license": "GPL3",
"type": "project",
"description": "Warden website monitoring tool",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"ext-openssl": "*",
"symfony/symfony": "2.6.*",
"doctrine/orm": "~2.2,>=2.2.3",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "@stable",
"symfony/monolog-bundle": "@stable",
"sensio/distribution-bundle": "~4.0",
"sensio/framework-extra-bundle": "@stable",
"sensio/generator-bundle": "@stable",
"incenteev/composer-parameter-handler": "~2.0",
"sensio/buzz-bundle":"@stable",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/mongodb-odm-bundle": "3.0.*@dev",
"doctrine/mongodb": "1.0.11"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Deeson\\WardenBundle\\Composer\\ScriptHandler::setupWarden"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Deeson\\WardenBundle\\Composer\\ScriptHandler::setupWarden"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}