-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 972 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
{
"name": "nutshell-framework/starterkit",
"description": "Start a new contao project based on the nutshell framework",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Dennis Erdmann",
"email": "dennis@erdmann-freunde.de"
}
],
"require": {
"php": ">=7.4",
"contao/manager-bundle": "4.13.*",
"contao/calendar-bundle": "^4.13",
"contao/comments-bundle": "^4.13",
"contao/faq-bundle": "^4.13",
"contao/listing-bundle": "^4.13",
"contao/news-bundle": "^4.13",
"contao/newsletter-bundle": "^4.13",
"nutshell-framework/nutshell": "^2.0"
},
"extra": {
"contao-component-dir": "assets"
},
"scripts": {
"post-install-cmd": [
"@php vendor/bin/contao-setup --ansi"
],
"post-update-cmd": [
"@php vendor/bin/contao-setup --ansi"
]
}
}