forked from kayqq/craft-cloudfront-purge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "kayqq/craft-cloudfront-purge",
"description": "A Craft CMS 3.x plugin that enables automatic Cloudfront Cache invalidation on entry save",
"type": "craft-plugin",
"version": "1.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"cloudfront purge"
],
"support": {
"docs": "https://github.com/kayqq/craft-cloudfront-purge/blob/master/README.md",
"issues": "https://github.com/kayqq/craft-cloudfront-purge/issues"
},
"license": "MIT",
"authors": [
{
"name": "Kenny Quan",
"homepage": "https://www.github.com/kayqq"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"aws/aws-sdk-php": "^3.0.0"
},
"autoload": {
"psr-4": {
"kayqq\\cloudfrontpurge\\": "src/"
}
},
"extra": {
"name": "CloudFront Purge",
"handle": "cloud-front-purge",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/kayqq/craft-cloudfront-purge/master/CHANGELOG.md",
"class": "kayqq\\cloudfrontpurge\\CloudFrontPurge"
}
}