-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.09 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.09 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
66
67
68
{
"name": "gmi/resquewebui",
"license": "MIT",
"type": "project",
"description": "Docker wrapper for xelan/resque-webui-bundle",
"authors": [
{
"name": "Martin Pircher",
"email": "martin.pircher@i-med.ac.at"
},
{
"name": "Andreas Erhard",
"email": "andreas.erhard@i-med.ac.at"
}
],
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"require": {
"php": "^7.2",
"symfony/asset": "^3.4.35",
"symfony/console": "^3.4.35",
"symfony/framework-bundle": "^3.4.35",
"symfony/security-bundle": "^3.4.35",
"symfony/templating": "^3.4.35",
"symfony/twig-bundle": "^3.4.35",
"incenteev/composer-parameter-handler": "^2.1",
"sensio/distribution-bundle": "^5.0",
"andaris/resque-webui-bundle": "^1.0"
},
"scripts": {
"symfony-scripts": [
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}