-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
35 lines (35 loc) · 960 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
{
"name": "wr/onepage-bundle",
"type": "contao-bundle",
"description": "This Onepage Bundle add a one page navigation module to Contao Open Source CMS. No jQuery required!",
"keywords": ["onepage","one","page","navigation","article","contao"],
"homepage": "https://github.com/webrealisierung-ch/onepage-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Daniel Steuri ",
"email": "[email protected]",
"homepage": "https://webrealisierung.ch"
}
],
"require": {
"php": "^7 || ^8",
"contao/core-bundle": "^4.13"
},
"autoload": {
"psr-4": {
"Wr\\OnepageBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/"
]
},
"extra": {
"contao-manager-plugin": "Wr\\OnepageBundle\\ContaoManager\\Plugin"
}
}