-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
{
"name": "hofff/contao-navigation-article",
"description": "Integrate articles into hofff.com navigation module for Contao CMS",
"keywords": [
"navigation",
"article",
"page",
"contao"
],
"type": "contao-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Oliver Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Developer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Developer"
},
{
"name": "Nicky Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/hofff/contao-navigation-article/issues",
"source": "https://github.com/hofff/contao-navigation-article"
},
"require": {
"php": ">=7.1",
"ext-pdo": "*",
"hofff/contao-navigation": "~1.8",
"contao/core-bundle": "^4.4",
"hofff/contao-content": "~2.1 || ^3.0",
"menatwork/contao-multicolumnwizard": "^3.3",
"symfony/http-kernel": "^3.3 || ^4.0",
"symfony/config": "^3.3 || ^4.0",
"symfony/dependency-injection": "^3.3 || ^4.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"php-http/guzzle6-adapter": "^1.1"
},
"replace": {
"backboneit/contao-navigation-article": "self.version",
"contao-legacy/backboneit_navigation_article": "self.version"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\NavigationArticle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Hofff\\Contao\\NavigationArticle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-1.x": "1.0.x-dev",
"dev-2.x": "2.0.x-dev"
}
}
}