-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
71 lines (71 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
{
"name": "netzmacht/contao-form-designer",
"description": "Contao form designer allows custom form styles",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"form",
"contao"
],
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
},
{
"name": "Alexander Kehr",
"email": "[email protected]",
"homepage": "https://www.kehr-solutions.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/contao-form-designer/issues",
"source": "https://github.com/netzmacht/contao-form-designer"
},
"require": {
"php": "^8.1",
"ext-dom": "*",
"composer-runtime-api": "^2.0",
"contao-community-alliance/meta-palettes": "^2.0",
"contao/core-bundle": "^4.13.37 || ^5.2.8",
"doctrine/dbal": "^3.4",
"mvo/contao-group-widget": "^1.4",
"netzmacht/html": "^2.0.2 || ^3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0 || ^3.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"doctrine/coding-standard": "^11.0",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"autoload": {
"psr-4": {
"Netzmacht\\Contao\\FormDesigner\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.5.x-dev",
"dev-master": "1.4.x-dev"
},
"contao-manager-plugin": "Netzmacht\\Contao\\FormDesigner\\ContaoManager\\Plugin"
}
}