-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.13 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
{
"name": "angellco/ab-test",
"description": "Run A/B tests easily in Craft.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"a-b test",
"split test",
"multivariate test"
],
"support": {
"docs": "https://github.com/angell-co/ab-test/blob/master/README.md",
"issues": "https://github.com/angell-co/ab-test/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Angell & Co",
"homepage": "https://angell.io"
}
],
"require": {
"craftcms/cms": "^3.5.11"
},
"autoload": {
"psr-4": {
"angellco\\abtest\\": "src/"
}
},
"extra": {
"name": "A/B Test ",
"handle": "ab-test",
"developer": "Angell & Co",
"developerUrl": "https://angell.io",
"documentationUrl": "https://github.com/angell-co/ab-test/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/angell-co/ab-test/master/CHANGELOG.md",
"class": "angellco\\abtest\\AbTest"
}
}