-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.19 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
{
"name": "presseddigital/uploadit",
"description": "The (sort of) unausuming front end asset uploader for Craft 3.",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"asset uploader",
"front end",
"uploadit"
],
"support": {
"docs": "https://github.com/presseddigital/uploadit/blob/master/README.md",
"issues": "https://github.com/presseddigital/uploadit/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Pressed Digital",
"homepage": "http://pressed.digital"
}
],
"require": {
"craftcms/cms": "^3.5.0",
"ralouphie/mimey": "^1.0 || ^2.0"
},
"autoload": {
"psr-4": {
"presseddigital\\uploadit\\": "src/"
}
},
"extra": {
"name": "Uploadit",
"handle": "uploadit",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/presseddigital/uploadit/master/CHANGELOG.md",
"class": "presseddigital\\uploadit\\Uploadit",
"components": {}
}
}