-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (36 loc) · 974 Bytes
/
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
{
"type": "project",
"name": "contao-association/contao-camp",
"description": "Website for Contao Camp",
"homepage": "https://contao.camp",
"license": "proprietary",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch/"
}
],
"require": {
"php": "^7.1.0",
"contao/manager-bundle": "4.4.*",
"terminal42/contao-folderpage": "~2.0",
"codefog/contao-mobile_menu": "^2.3.3"
},
"require-dev": {
"andres-montanez/magallanes": "^3.1"
},
"autoload": {
"psr-4": { "App\\": "src/" }
},
"config": {
"component-dir": "assets"
},
"scripts": {
"post-install-cmd": [
"Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
],
"post-update-cmd": [
"Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
]
}
}