-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·35 lines (35 loc) · 1.07 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
{
"name": "fractas/googleanalytics",
"description": "Fast, configurable and simple Google Analytics module with support for multiple GA ID's",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/fractaslabs/silverstripe-googleanalytics",
"keywords": ["silverstripe", "CMS", "google analytics", "google", "analytics"],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/fractaslabs/silverstripe-googleanalytics/issues"
},
"authors": [{
"name": "Milan Jelicanin",
"email": "[email protected]"
}],
"require": {
"silverstripe/cms": "^4.0 || ^5.0",
"silverstripe/framework": "^4.0 || ^5.0"
},
"extra": {
"installer-name": "googleanalytics"
},
"autoload": {
"psr-4": {
"Fractas\\GoogleAnalytics\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}