forked from contao-community-alliance/dc-general
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "contao-community-alliance/dc-general",
"description": "Universal data container for Contao",
"keywords": [
"framework",
"data",
"container",
"driver",
"php",
"contao"
],
"type": "contao-bundle",
"homepage": "http://c-c-a.org/",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Stefan Heimes",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/contao-community-alliance/dc-general/issues",
"wiki": "http://de.contaowiki.org/DC_General",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/dc-general"
},
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-pdo": "*",
"contao-community-alliance/events-contao-bindings": "^4.9",
"contao-community-alliance/translator": "^2.2",
"contao-community-alliance/url-builder": "^1.3",
"contao/core-bundle": "^4.9",
"doctrine/cache": "^1.13",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher": "4.4.*",
"symfony/expression-language": "4.4.*"
},
"conflict": {
"menatwork/contao-multicolumnwizard-bundle": "<3.4.9"
},
"require-dev": {
"phpcq/all-tasks": "^1.3",
"friendsofphp/php-cs-fixer": "^2.13",
"friendsofsymfony/http-cache": "^2.9",
"phpunit/phpunit": "^7.5 | ^8.5 | ^9.3",
"contao/manager-plugin": "^2.8",
"menatwork/contao-multicolumnwizard-bundle": "^3.4",
"php-http/guzzle6-adapter": "^2.0",
"phpmd/phpmd": "^2.8"
},
"autoload": {
"classmap": [
"contao-compat/DC_General.php"
],
"files": [
"src/deprecated-autoload.php"
],
"psr-4": {
"ContaoCommunityAlliance\\DcGeneral\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\DcGeneral\\Test\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "ContaoCommunityAlliance\\DcGeneral\\ContaoManager\\Plugin",
"branch-alias": {
"dev-support/2.1.x": "2.1.x-dev",
"dev-master": "2.2.x-dev",
"dev-release/2.3.0": "2.3.x-dev"
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --rules=@PSR2"
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": true
}
}
}