-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
38 lines (38 loc) · 880 Bytes
/
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
{
"name": "djurovicigoor/lara-files",
"description": "Lara-files is a package which will make it easier to work with files. Package has built-in support for DigitalOcean spaces and Amazon S3.",
"keywords": [
"files",
"lara-files",
"file",
"storage",
"djurovicigoor"
],
"homepage": "https://github.com/djurovicigoor/lara-files",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Djurovic Igor",
"email": "[email protected]",
"homepage": "http://djurovic.xyz",
"role": "Owner"
}
],
"minimum-stability": "dev",
"require": {
"league/flysystem-aws-s3-v3": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
"DjurovicIgoor\\LaraFiles\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"DjurovicIgoor\\LaraFiles\\LaraFilesProvider"
]
}
}
}