-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.51 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
{
"name": "suhype/craft-pagecache",
"description": "Simple HTML Page Cache Plugin",
"type": "craft-plugin",
"version": "1.2.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"page cache"
],
"support": {
"docs": "https://github.com/ammannbe/craft-pagecache/blob/master/README.md",
"issues": "https://github.com/ammannbe/craft-pagecache/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Benjamin Ammann",
"homepage": "https://github.com/ammannbe"
}
],
"require": {
"php": "^8.0.2|^9.0",
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"suhype\\pagecache\\": "src/"
}
},
"extra": {
"name": "Page Cache",
"handle": "pagecache",
"developer": "Benjamin Ammann",
"developerUrl": "https://github.com/ammannbe",
"documentationUrl": "https://github.com/ammannbe/craft-pagecache/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/ammannbe/craft-pagecache/master/CHANGELOG.md",
"components": {
"pageCacheService": "suhype\\pagecache\\services\\PageCacheService"
},
"class": "suhype\\pagecache\\PageCache"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"prefer-stable": true
}