-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.53 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
{
"name": "dispositiontools/craft-persistiveutm",
"description": "Persist UTM values for tracking conversation rates ",
"type": "craft-plugin",
"version": "0.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"persistiveutm"
],
"support": {
"docs": "https://github.com/dispositiontools/craft-persistiveutm/persistiveutm/blob/master/README.md",
"issues": "https://github.com/dispositiontools/craft-persistiveutm/persistiveutm/issues"
},
"license": "MIT",
"authors": [
{
"name": "Disposition Tools",
"homepage": "https://www.disposition.tools"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"dispositiontools\\persistiveutm\\": "src/"
}
},
"extra": {
"name": "Persistive UTM",
"handle": "persistiveutm",
"developer": "Disposition Tools",
"developerUrl": "https://www.disposition.tools",
"documentationUrl": "https://github.com/dispositiontools/craft-persistiveutm/persistiveutm/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/dispositiontools/craft-persistiveutm/persistiveutm/master/CHANGELOG.md",
"components": {
"tracking": "dispositiontools\\persistiveutm\\services\\Tracking",
"reports": "dispositiontools\\persistiveutm\\services\\Reports"
},
"class": "dispositiontools\\persistiveutm\\Persistiveutm"
}
}