-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.26 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
{
"name": "cyberspectrum/contao-table-of-contents",
"description": "Generates a table of contents from headlines",
"keywords": [
"contao",
"content-element"
],
"type": "contao-module",
"homepage": "https://www.cyberspectrum.de/",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Christian Schiffler",
"email": "c.schiffler@cyberspectrum.de",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cyberspectrum/contao-table-of-contents/issues",
"source": "https://github.com/cyberspectrum/contao-table-of-contents"
},
"require": {
"php": ">=5.6",
"contao/core": "^3.5.5",
"contao-community-alliance/composer-plugin": "~2.4"
},
"require-dev": {
"cyberspectrum/contao-toolbox": "~0.6",
"phpcq/all-tasks": "~1.1"
},
"autoload": {
"psr-4": {
"CyberSpectrum\\TableOfContents\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CyberSpectrum\\TableOfContents\\Test\\": "tests"
}
},
"extra": {
"contao": {
"sources": {
"contao": "system/modules/table-of-contents"
}
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}