-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
77 lines (77 loc) · 2.17 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
{
"name": "contao-community-alliance/meta-palettes",
"description": "MetaPalettes extension for Contao OpenSource CMS",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"contao",
"page",
"title"
],
"authors": [
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "https://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"homepage": "https://c-c-a.org",
"support": {
"issues": "https://github.com/contao-community-alliance/meta-palettes/issues",
"wiki": "https://github.com/contao-community-alliance/meta-palettes/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/contao-community-alliance/meta-palettes"
},
"require": {
"php": "^7.1 || ^8.0",
"contao/core-bundle": "^4.9 || ^5.0",
"doctrine/dbal": "^2.13 || ^3.1",
"symfony/config": "^4.4 || ^5.1 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0"
},
"require-dev": {
"contao-community-alliance/dc-general": "^2.1@dev",
"contao/manager-plugin": "^2.2",
"phpcq/coding-standard": "^2.1.2",
"phpcq/runner-bootstrap": "1.x-dev"
},
"conflict": {
"contao/manager-plugin": "<2.2 || >=3.0",
"metamodels/dc_general": "<1-dev"
},
"autoload": {
"psr-4": {
"ContaoCommunityAlliance\\MetaPalettes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ContaoCommunityAlliance\\MetaPalettes\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"composer/package-versions-deprecated": true,
"contao/manager-plugin": true,
"php-http/discovery": true,
"ocramius/package-versions": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.2.x-dev",
"dev-master": "2.1.x-dev",
"dev-support/1.x": "1.11.x-dev"
},
"contao-manager-plugin": "ContaoCommunityAlliance\\MetaPalettes\\ContaoManager\\Plugin"
}
}