-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.14 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
{
"name": "hofff/contao-googleanalytics",
"description": "Google Analytics integration for Contao CMS.",
"keywords": ["contao"],
"type":"contao-bundle",
"license":"LGPL-3.0-or-later",
"homepage" : "https://hofff.com",
"authors": [
{
"name": "Nicky Hoff",
"homepage": "https://hofff.com",
"email": "[email protected]",
"role": "Manager"
},
{
"name": "Christopher Bölter",
"email": "[email protected]",
"homepage": "https://hofff.com/",
"role": "Developer"
},
{
"name":"Cliff Parnitzky",
"email":"[email protected]",
"role":"Developer"
}
],
"require": {
"php": ">=7.3",
"contao/core-bundle":"~4.9",
"hofff/contao-consent-bridge": "^1.1"
},
"autoload": {
"psr-4": {
"Hofff\\GoogleAnalyticsBundle\\": "src/"
}
},
"extra":{
"contao-manager-plugin": "Hofff\\GoogleAnalyticsBundle\\ContaoManager\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"contao-components/installer": true
}
}
}