forked from GrahamCampbell/Laravel-Flysystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vitxu83/flysystem",
"description": "Flysystem Is A Flysystem Bridge For Laravel",
"keywords": ["laravel", "framework", "files", "aws", "s3", "dropbox", "flysystem", "Flysystem", "Laravel Flysystem", "Laravel-Flysystem", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"graham-campbell/manager": "^4.5",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"league/flysystem": "^1.1.1"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"graham-campbell/analyzer": "^3.0",
"graham-campbell/testbench": "^5.6",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-azure-blob-storage": "^0.1.6",
"league/flysystem-cached-adapter": "^1.0",
"spatie/flysystem-dropbox": "^1.0",
"league/flysystem-eventable-filesystem": "^1.0",
"league/flysystem-gridfs": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"league/flysystem-ziparchive": "^1.0",
"superbalist/flysystem-google-storage": "^7.2",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.5.8 || ^9.3.7"
},
"suggest": {
"alcaeus/mongo-php-adapter": "GridFS adapter support.",
"league/flysystem-aws-s3-v3": "AwsS3 adapter support.",
"league/flysystem-azure-blob-storage": "Azure adapter support.",
"league/flysystem-cached-adapter": "Adapter caching support.",
"spatie/flysystem-dropbox": "Dropbox adapter support.",
"league/flysystem-eventable-filesystem": "Eventable filesystem support.",
"league/flysystem-gridfs": "GridFS adapter support.",
"league/flysystem-replicate-adapter": "Replicate adapter support.",
"league/flysystem-sftp": "Sftp adapter support.",
"league/flysystem-webdav": "WebDav adapter support.",
"league/flysystem-ziparchive": "ZipArchive adapter support.",
"superbalist/flysystem-google-storage": "GoogleCloudStorage adapter support."
},
"autoload": {
"psr-4": {
"GrahamCampbell\\Flysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GrahamCampbell\\Tests\\Flysystem\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"GrahamCampbell\\Flysystem\\FlysystemServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}