-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
38 lines (38 loc) · 984 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
{
"name": "bolden/htmlcache",
"description": "Cache pages to HTML and boost website performance on Craft CMS 3.",
"type": "craft-plugin",
"version": "1.0.15",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"html cache"
],
"support": {
"docs": "https://github.com/boldenamsterdam/htmlcache/blob/master/README.md",
"issues": "https://github.com/boldenamsterdam/htmlcache/issues"
},
"license": "MIT",
"authors": [{
"name": "Bolden B.V.",
"homepage": "https://www.bolden.nl"
}],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"bolden\\htmlcache\\": "src/"
}
},
"extra": {
"name": "HTML Cache",
"handle": "html-cache",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"class": "bolden\\htmlcache\\HtmlCache"
}
}