forked from teamdeeson/warden
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.47 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 2.47 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "teamdeeson/warden",
"license": "GPL3",
"type": "project",
"description": "Warden website monitoring tool",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.6",
"ext-openssl": "*",
"symfony/symfony": "^2.8",
"phpunit/phpunit": "@stable",
"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.1",
"doctrine/mongodb-odm-bundle": "^3.2",
"doctrine/mongodb": "^1.4",
"mongodb/mongodb": "^1.1",
"alcaeus/mongo-php-adapter": "^1.0",
"symfony/swiftmailer-bundle": "~2.3,>=2.3.10"
},
"provide": {
"ext-mongo": "1.6.13"
},
"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.8-dev"
}
}
}