-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.08 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
{
"name": "stenvdb/craft-download-assets",
"description": "Adds a download link next to assets",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"download assets"
],
"support": {
"docs": "https://github.com/stenvdb/craft-download-assets/blob/master/README.md",
"issues": "https://github.com/stenvdb/craft-download-assets/issues"
},
"license": "MIT",
"authors": [
{
"name": "Sten Van den Bergh",
"homepage": "http://www.stenvdb.be/"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"stenvdb\\downloadassets\\": "src/"
}
},
"extra": {
"name": "Download Assets",
"handle": "download-assets",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/stenvdb/craft-download-assets/blob/master/README.md",
"class": "stenvdb\\downloadassets\\DownloadAssets"
}
}