-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.1 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
{
"name": "sykez/laravel-storage-copy",
"description": "Laravel Artisan command for copying files between Laravel Filesystem/Storage disks.",
"license": "MIT",
"keywords": [
"laravel",
"filesystem",
"flysystem",
"storage",
"file",
"copy",
"sync",
"migrate",
"s3"
],
"homepage": "https://github.com/sykezz/laravel-storage-copy",
"authors": [
{
"name": "sykez",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.4 || ^8.0",
"league/flysystem": "~1.0 || ^3.0",
"league/flysystem-aws-s3-v3": "~1.0 || ^3.0",
"illuminate/console": "5.5 - 9",
"illuminate/filesystem": "5.5 - 9",
"illuminate/log": "5.5 - 9",
"illuminate/support": "5.5 - 9"
},
"autoload": {
"psr-4": {
"Sykez\\StorageCopy\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Sykez\\StorageCopy\\ServiceProvider"
]
}
}
}