-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.15 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.15 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
45
46
47
{
"name": "jasekz/laradrop",
"description": "File manager using Dropzone.js for Laravel 5 | 6 | 7 | 8",
"keywords": [
"php",
"laravel 5",
"laravel 6",
"laravel 7",
"laravel 8",
"dropzone.js",
"file manager",
"file upload"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jasek Zbigniew",
"email": "[email protected]",
"homepage": "http://elegrit.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0|^6.0|^7.0|^8.0",
"ext-fileinfo": "*",
"intervention/image": "2.*",
"illuminate/database": "~5.0|^6.0|^7.0|^8.0",
"ext-json": "*",
"illuminate/routing": "~5.0|^6.0|^7.0|^8.0",
"illuminate/queue": "~5.0|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-0": {
"Jasekz\\Laradrop": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Jasekz\\Laradrop\\LaradropServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}