-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 969 Bytes
/
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
{
"name": "imarc/craft-ab-test",
"description": "Allows a user to set up an A/B test in Craft, track impressions and clicks with GA-4, and serve different versions. The serving is done in the front end, so front end caching will not interfere with the test.",
"type": "craft-plugin",
"license": "mit",
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=8.0.2",
"craftcms/cms": "^4.5.0|^5.0"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"imarc\\abtest\\": "src/"
}
},
"extra": {
"handle": "ab-test",
"name": "AB Test",
"developer": "Linnea Hartsuyker",
"documentationUrl": "",
"class": "imarc\\abtest\\ABTest"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}