-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.9 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
{
"name": "inspiredminds/contao-include-info",
"description": "Contao extension to provide additional info for include elements in the back end.",
"keywords": ["contao", "include", "module", "content element", "form"],
"type": "contao-bundle",
"homepage": "https://github.com/inspiredminds/contao-include-info",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Fritz Michael Gschwantner",
"homepage": "http://www.inspiredminds.at",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inspiredminds/contao-include-info/issues",
"source": "https://github.com/inspiredminds/contao-include-info"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fritzmg"
}
],
"require": {
"php": ">=8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^3.0",
"nyholm/psr7": "^1.2",
"symfony/config": "^5.4 || ^6.4 || ^7.1",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.1",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.1",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.1",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.1",
"symfony/routing": "^5.4 || ^6.4 || ^7.1"
},
"autoload": {
"psr-4": {
"InspiredMinds\\IncludeInfoBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "InspiredMinds\\IncludeInfoBundle\\ContaoManager\\Plugin"
},
"require-dev": {
"contao/easy-coding-standard": "^6.0",
"contao/rector": "^1.0"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"php-http/discovery": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}