-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.37 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
{
"name": "hofff/contao-comments-latest",
"description": "Frontend-Module for Contao CMS to display latest comments.",
"keywords": [
"module",
"content",
"insert-tags",
"article",
"contao"
],
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"homepage": "http://hofff.com/",
"authors": [
{
"name": "Oliver Hoff",
"email": "[email protected]",
"homepage": "https://hofff.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/hofff/contao-comments-latest/issues",
"source": "https://github.com/hofff/contao-comments-latest"
},
"config": {
"preferred-install": "dist"
},
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.9",
"contao/comments-bundle": "^4.9",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.9"
},
"conflict": {
"contao/news-bundle": "<4.9 || >=5.0"
},
"suggest": {
"contao/news-bundle": "Install news bundle for fetching latest comments of the news"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\CommentsLatest\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Hofff\\Contao\\CommentsLatest\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-support/1.x": "1.0.x-dev"
}
}
}