-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.61 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
{
"name": "contao-community-alliance/contao-textfield-multiple-bundle",
"description": "Contao FormTextField with eval multiple and size support",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao resources",
"frontend",
"frontendediting",
"metamodels",
"cca"
],
"authors": [
{
"name": "Richard Henkenjohann",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://c-c-a.org/",
"support": {
"issues": "https://github.com/contao-community-alliance/contao-textfield-multiple-bundle/issues",
"source": "https://github.com/contao-community-alliance/contao-textfield-multiple-bundle"
},
"require": {
"php": "^8.2",
"contao-community-alliance/dc-general-contao-frontend": "^2.4",
"contao/core-bundle": "^5.3",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/http-kernel": "^6.4"
},
"require-dev": {
"contao/manager-plugin": "^2.8",
"phpcq/runner-bootstrap": "^1.0@dev",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\FormTextFieldMultipleBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\FormTextFieldMultipleBundle\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"contao-manager-plugin": "ContaoCommunityAlliance\\FormTextFieldMultipleBundle\\ContaoManager\\Plugin"
}
}