-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (52 loc) · 1.38 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
{
"name": "serieseight/craft-cache-helper",
"type": "craft-plugin",
"license": "proprietary",
"version": "1.0.7",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"cache",
"cache helper"
],
"require": {
"php": ">=8.0.2",
"craftcms/cms": "^4.5.0|^5.0.0"
},
"authors": [
{
"name": "Series Eight",
"homepage": "https://serieseight.com"
}
],
"support": {
"email": "info@serieseight.com",
"issues": "https://github.com/serieseight/craft-cache-helper/issues?state=open",
"source": "https://github.com/serieseight/craft-cache-helper",
"docs": "https://github.com/serieseight/craft-cache-helper/blob/master/README.md"
},
"autoload": {
"psr-4": {
"serieseight\\cachehelper\\": "src/"
}
},
"extra": {
"handle": "cache-helper",
"name": "Cache Helper",
"developer": "Series Eight",
"documentationUrl": "https://github.com/serieseight/craft-cache-helper",
"class": "serieseight\\cachehelper\\CacheHelper"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}