-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.32 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
{
"name": "lifechurch/purge-fastly",
"description": "Plugin adds specific field for setting fastly surrogate keys. If content has that keys it will be purged by every content save/edit action for every fastly service id(you can add ids on settings page).",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"purge fastly"
],
"support": {
"docs": "https://github.com/lifechurch/purge-fastly-plugin/blob/master/README.md",
"issues": "https://github.com/lifechurch/purge-fastly-plugin/issues"
},
"license": "MIT",
"authors": [
{
"name": "Dmitriy Pashchenko",
"homepage": "https://github.com/Belgiets"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"lifechurch\\purgefastly\\": "src/"
}
},
"extra": {
"name": "Purge fastly",
"handle": "purge-fastly",
"hasCpSettings": true,
"hasCpSection": false,
"components": {
"surrKeysFields": "lifechurch\\purgefastly\\services\\SurrKeysFields",
"fastly": "lifechurch\\purgefastly\\services\\FastlyService"
},
"class": "lifechurch\\purgefastly\\PurgeFastly"
}
}