-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.09 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.09 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hofff/contao-formtools",
"description": "Various form utilities for Contao CMS.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"form",
"contao"
],
"authors": [
{
"name": "David Molineus",
"email": "david@hofff.com",
"homepage": "https://www.hofff.com",
"role": "Developer"
},
{
"name": "Nicky Hoff",
"email": "nick@hofff.com",
"homepage": "https://www.hofff.com/",
"role": "Manager"
},
{
"name": "Cliff Parnitzky",
"email": "cliff@hofff.com",
"homepage": "https://www.hofff.com",
"role": "Developer"
},
{
"name": "Oliver Hoff",
"email": "oliver@hofff.com",
"homepage": "https://www.hofff.com/",
"role": "Developer"
}
],
"homepage": "https://www.hofff.com/",
"support": {
"email": "info@hofff.com",
"issues": "https://github.com/hofff/contao-formtools/issues",
"source": "https://github.com/hofff/contao-formtools"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"contao/core-bundle": "^5.3",
"doctrine/dbal": "^3.9",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"phpcq/runner-bootstrap": "@dev"
},
"conflict": {
"contao/manager-plugin": "<2.1 || >= 3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Hofff\\Contao\\FormTools\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "4.1.x-dev",
"dev-master": "4.0.x-dev",
"dev-support/3.x": "3.3.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\FormTools\\ContaoManager\\Plugin"
}
}