-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 1.9 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
{
"name": "hofff/contao-consent-bridge",
"description": "Bridge between consent tools and third party extensions for Contao",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"keywords": [
"GDPDR",
"Cookies",
"Consent"
],
"authors": [
{
"name": "Nicky Hoff",
"email": "[email protected]",
"homepage": "https://www.hofff.com/",
"role": "Maintainer"
},
{
"name": "David Molineus",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"contao-community-alliance/meta-palettes": "^2.0",
"contao/core-bundle": "^4.13 || ^5.0",
"doctrine/dbal": "^3.4",
"netzmacht/contao-toolkit": "^3.9 || ^4.0",
"netzmacht/html": "^2.0 || ^3.0",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/translation-contracts": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
"doctrine/coding-standard": "^12.0",
"friends-of-phpspec/phpspec-expect": "^4.0",
"netzmacht/phpspec-phpcq-plugin": "@dev",
"phpcq/runner-bootstrap": "^1.0@dev",
"phpspec/phpspec": "^7.4"
},
"autoload": {
"psr-4": {
"Hofff\\Contao\\Consent\\Bridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Hofff\\Contao\\Consent\\Bridge\\": "spec/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"contao-components/installer": true,
"contao/manager-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.7.x-dev",
"dev-master": "1.6.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\Consent\\Bridge\\ContaoManager\\Plugin"
}
}