-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
67 lines (67 loc) · 1.71 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": "bit3/contao-xnavigation",
"description": "Highly extendable and flexible navigation module.",
"keywords": ["contao", "navigation", "sitemap"],
"type": "contao-module",
"homepage": "http://bit3.de",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Tristan Lins",
"email": "[email protected]",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bit3/contao-xnavigation/issues",
"wiki": "https://github.com/bit3/contao-xnavigation/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/bit3/contao-xnavigation"
},
"require": {
"php": ">=5.3",
"contao/core": ">=3.2.1,<4-dev",
"contao-community-alliance/composer-plugin": "~2.0",
"contao-community-alliance/event-dispatcher": "~1.0",
"bit3/contao-meta-palettes": "~1.0",
"bit3/contao-twig": "~1.7",
"bit3/php-flexi-tree": "~2.0",
"bit3/php-string-builder": "~1.0"
},
"require-dev": {
"bit3/php-coding-standard": "@dev"
},
"replace": {
"contao-legacy/xnavigation": "self.version"
},
"suggest": {
"bit3/contao-xnavigation-page": "Pages navigation items.",
"bit3/contao-xnavigation-article": "Article navigation items.",
"bit3/contao-xnavigation-content": "Content navigation items."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-0": {
"Bit3\\Contao\\XNavigation": "src/"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/xnavigation"
},
"transifex": {
"project": "contao-xnavigation",
"prefix": "xnavigation-",
"languages_cto": "contao/languages",
"languages_tx": ".tx"
}
},
"branch-alias": {
"dev-develop": "2.0.x-dev"
}
}
}