-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.56 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.56 KB
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": "xirdion/contao-author-bundle",
"description": "Show additional author information on a reader page",
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Xirdion",
"homepage": "https://github.com/xirdion"
}
],
"support": {
"issues": "https://github.com/xirdion/contao-author-bundle/issues",
"source": "https://github.com/xirdion/contao-author-bundle"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"contao/calendar-bundle": "^4.13 || ^5.0",
"contao/core-bundle": "^4.13 || ^5.0",
"contao/faq-bundle": "^4.13 || ^5.0",
"contao/news-bundle": "^4.13 || ^5.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"contao/manager-plugin": "^2.0",
"contao/test-case": "^4.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true
}
},
"extra": {
"contao-manager-plugin": "Xirdion\\ContaoAuthorBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Xirdion\\ContaoAuthorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xirdion\\ContaoAuthorBundle\\Tests\\": "tests"
}
}
}