-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
41 lines (41 loc) · 1.16 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
{
"name": "contao/managed-edition",
"description": "Contao Managed Edition",
"license": "LGPL-3.0-or-later",
"type": "project",
"require": {
"contao/calendar-bundle": "^5.4",
"contao/comments-bundle": "^5.4",
"contao/conflicts": "@dev",
"contao/faq-bundle": "^5.4",
"contao/listing-bundle": "^5.4",
"contao/manager-bundle": "5.4.*",
"contao/news-bundle": "^5.4",
"contao/newsletter-bundle": "^5.4"
},
"conflict": {
"contao-components/installer": "<1.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-community-alliance/composer-plugin": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-component-dir": "assets"
},
"scripts": {
"post-install-cmd": [
"@php vendor/bin/contao-setup"
],
"post-update-cmd": [
"@php vendor/bin/contao-setup"
]
}
}