forked from FriendsOfFlarum/analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.44 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
{
"name": "flagrow/flarum-ext-analytics",
"description": "Tracks analytics using googles and piwik metric tool analytics",
"keywords": [
"extension",
"flarum",
"flagrow",
"analytics",
"google-analytics",
"piwik"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Daniël Klabbers",
"email": "daniel+flarum@klabbers.email",
"homepage": "http://hyn.io"
},
{
"name": "Santiago Testa Biali",
"email": "santiago.t.biali@gmail.com"
},
{
"name": "Clark Winkelmann",
"email": "clark.winkelmann@gmail.com",
"homepage": "https://clarkwinkelmann.com/"
}
],
"support": {
"issues": "https://github.com/flagrow/flarum-ext-analytics/issues",
"source": "https://github.com/flagrow/flarum-ext-analytics"
},
"require": {
"flarum/core": "^0.1.0-beta.8"
},
"extra": {
"flarum-extension": {
"title": "Analytics",
"icon": {
"name": "fas fa-chart-line",
"backgroundColor": "#74000E",
"color": "#BE1E31"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/1983"
}
},
"autoload": {
"psr-4": {
"Flagrow\\Analytics\\": "src/"
}
}
}