-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.19 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
{
"name": "e-spin/page-info-bundle",
"description": "Show different page and article information in Contao backend e.g. id, alias, title, layout and other more.",
"keywords": [
"contao",
"page",
"article",
"info",
"information",
"hint"
],
"type": "contao-bundle",
"homepage": "https://www.e-spin.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "e-spin",
"email": "[email protected]",
"homepage": "https://www.e-spin.de",
"role": "Developer"
},
{
"name": "Kamil Kuzminski",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/e-spin/page-info-bundle/issues",
"source": "https://github.com/e-spin/page-info-bundle"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/e-spin"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.2"
},
"require-dev": {
"contao/manager-plugin": "^2.2"
},
"autoload": {
"psr-4": {
"Espin\\PageInfoBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Espin\\PageInfoBundle\\ContaoManager\\Plugin"
}
}