-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.46 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
{
"name": "discordier/justtextwidgets",
"description": "Hidden fields with text values and explanation texts",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"widget",
"text"
],
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de",
"role": "Developer"
}
],
"homepage": "https://www.cyberspectrum.de",
"support": {
"email": "[email protected]",
"issues": "https://github.com/discordier/justtextwidgets/issues",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/discordier/justtextwidgets"
},
"require": {
"php": "^8.2",
"contao/core-bundle": "^5.3",
"symfony/http-kernel": "^6.4"
},
"require-dev": {
"contao/manager-plugin": "^2.13",
"phpcq/runner-bootstrap": "^1.0@dev"
},
"autoload": {
"psr-4": {
"Discordier\\JustTextWidgetsBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Discordier\\JustTextWidgetsBundle\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false,
"php-http/discovery": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-release/2.0.0": "2.0.x-dev"
},
"contao-manager-plugin": "Discordier\\JustTextWidgetsBundle\\ContaoManager\\Plugin"
}
}