forked from contao-association/contao.camp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (73 loc) · 2.57 KB
/
composer.json
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
69
70
71
72
73
74
75
76
{
"type": "project",
"description": "",
"license": "proprietary",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch/"
}
],
"require": {
"php": ">=5.5.0",
"symfony/symfony": "~2.8|~3.0",
"symfony/monolog-bundle": "~2.8",
"symfony/swiftmailer-bundle": "~2.3",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"doctrine/doctrine-bundle": "~1.6",
"contao/core-bundle": "~4.2",
"contao/installation-bundle": "~1.1",
"terminal42/notification_center": "dev-hotfix/1.3.7 as 1.3.7",
"terminal42/contao-leads": "~2.0",
"terminal42/contao-ce-access": "~2.1",
"terminal42/contao-folderpage": "~2.0",
"codefog/contao-mobile_menu": "^2.3.3",
"lexik/maintenance-bundle": "~2.0",
"doctrine/orm": "~2.5",
"doctrine/doctrine-migrations-bundle": "~1.0",
"doctrine/doctrine-cache-bundle": "~1.0"
},
"require-dev": {
"andres-montanez/magallanes": "dev-master",
"phpunit/phpunit": "4.*"
},
"autoload": {
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ],
"psr-4": {
"AppBundle\\": "src/AppBundle/"
}
},
"config": {
"preferred-install": "dist",
"component-dir": "assets"
},
"extra": {
"incenteev-parameters": {
"file": "app/config/parameters.yml",
"env-map": {
"secret": "CONTAO_RANDOM_SECRET"
}
},
"symfony-bin-dir": "app",
"symfony-var-dir": "app",
"symfony-assets-install": "relative"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"post-update-cmd": [
"Contao\\CoreBundle\\Composer\\ScriptHandler::generateRandomSecret",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Contao\\CoreBundle\\Composer\\ScriptHandler::addDirectories",
"Contao\\CoreBundle\\Composer\\ScriptHandler::generateSymlinks"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}