-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.19 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
{
"name": "clickrain/cdn-helper",
"description": "A custom plugin that provides helper functions for working with CDN assets.",
"type": "craft-plugin",
"version": "1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"cdn helper"
],
"support": {
"docs": "https://bitbucket.org/clickraininc/cdn-helper/",
"issues": "https://bitbucket.org/clickraininc/cdn-helper/issues"
},
"license": "MIT",
"authors": [
{
"name": "Click Rain",
"homepage": "https://clickrain.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@bitbucket.org:clickraininc/cdn-helper.git"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"clickrain\\cdnhelper\\": "src/"
}
},
"extra": {
"name": "CDN Helper",
"handle": "cdn-helper",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/clickrain/cdn-helper/master/CHANGELOG.md",
"class": "clickrain\\cdnhelper\\CdnHelper"
}
}