forked from flagrow/flarum-ext-image-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.3 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
47
{
"name": "flagrow/flarum-ext-image-upload",
"description": "Image uploader for Flarum forum messages.",
"keywords": ["upload", "flarum", "flagrow", "image", "imgur"],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Matteo Pompili",
"email": "matpompili@gmail.com"
},
{
"name": "Daniël Klabbers",
"email": "daniel+flarum@klabbers.email",
"homepage": "http://hyn.io"
}
],
"support": {
"issues": "https://github.com/flagrow/flarum-ext-image-upload/issues",
"source": "https://github.com/flagrow/flarum-ext-image-upload"
},
"require": {
"flarum/core": "^0.1.0-beta.5",
"flarum/flarum-ext-markdown": "^0.1.0-beta.3"
},
"suggest": {
"cloudinary/cloudinary_php": "Allows uploading images to cloudinary."
},
"extra": {
"flarum-extension": {
"title": "Image Upload",
"icon": {
"name": "upload",
"backgroundColor": "#000",
"color": "#87d37c"
}
},
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"autoload": {
"psr-4": {
"Flagrow\\ImageUpload\\": "src/"
}
}
}