-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
{
"name": "oneup/contao-sibling-navigation",
"type": "contao-module",
"description": "Provides a sibling navigation (Previous/Next) as a ContentElement or a Module for news, events and pages.",
"keywords": [
"contao",
"sibling",
"navigation",
"page",
"news",
"events"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
},
{
"name": "Jim Schmid",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"contao-community-alliance/composer-plugin": "^2.0 || ^3.0",
"contao/core-bundle": "^3.2 || ^4.4"
},
"conflict": {
"contao/core-bundle": "3.4.0"
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/sibling-navigation"
}
}
},
"autoload": {
"psr-4": {
"Oneup\\SiblingNavigation\\": "src"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-sibling-navigation/issues",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/1up-lab/contao-sibling-navigation"
}
}