-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·39 lines (39 loc) · 1.33 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
{
"name": "ngdot/contao-changenewsmore",
"description": "This extension makes it possible to replace 'Read more ...' with an individual text. Works for all forwarding destinations!",
"keywords": ["contao", "news"],
"type": "contao-bundle",
"homepage": "https://nicolas-goerlach.de",
"license": "LGPL-3.0-or-later",
"authors": [{
"name": "Nicolas Görlach",
"homepage": "https://nicolas-goerlach.de",
"email": "[email protected]",
"role": "Developer"
}],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ngdot/contao-changenewsmore/issues",
"source": "https://github.com/ngdot/contao-changenewsmore",
"forum": "https://community.contao.org/de"
},
"require": {
"php": "^7.1",
"contao/core-bundle": "~4.4",
"contao/news-bundle": "~4.4",
"symfony/config": "^3.4 || ^4.4 || ^5.1",
"symfony/dependency-injection": "^3.4 || ^4.4 || ^5.1",
"symfony/http-kernel": "^3.4 || ^4.4 || ^5.1"
},
"require-dev": {
"contao/manager-plugin": "^2.0"
},
"autoload": {
"psr-4": {
"ContaoChangeNewsMoreBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "ContaoChangeNewsMoreBundle\\ContaoManager\\Plugin"
}
}