-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
61 lines (61 loc) · 2.12 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
60
61
{
"name": "inspiredminds/contao-fieldset-duplication",
"description": "Contao extension to allow the duplication of form fieldsets in the front end by the user for additional input fields.",
"keywords": ["contao", "fieldset", "form", "duplication"],
"type": "contao-bundle",
"homepage": "https://github.com/inspiredminds/contao-fieldset-duplication",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name":"Fritz Michael Gschwantner",
"homepage":"http://www.inspiredminds.at",
"email":"[email protected]",
"role":"Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/inspiredminds/contao-fieldset-duplication/issues",
"source": "https://github.com/inspiredminds/contao-fieldset-duplication",
"forum": "https://community.contao.org/de"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fritzmg"
}
],
"require":{
"php": ">=7.4",
"ext-json": "*",
"contao/core-bundle": "^4.9 || ^5.0",
"composer/semver": "^1.0 || ^2.0 || ^3.0",
"doctrine/dbal": "^2.11 || ^3.0",
"jean85/pretty-package-versions": "^1.0 || ^2.0",
"mvo/contao-group-widget": "^1.3",
"symfony/service-contracts": "^1.0 || ^2.0 || ^3.0",
"symfony/polyfill-php80": "^1.29"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"terminal42/contao-leads": "^1.4 || ^3.0",
"terminal42/contao-mp_forms": "^4.4"
},
"autoload": {
"psr-4": {
"InspiredMinds\\ContaoFieldsetDuplication\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "InspiredMinds\\ContaoFieldsetDuplication\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false,
"contao-community-alliance/composer-plugin": true
}
}
}