-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
composer.json
73 lines (73 loc) · 2.73 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
73
{
"name": "graham-campbell/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": "hello@gjcampbell.co.uk",
"homepage": "https://github.com/GrahamCampbell"
}
],
"require": {
"php": "^7.4.15 || ^8.0.2",
"graham-campbell/manager": "^4.7",
"illuminate/contracts": "^8.75",
"illuminate/support": "^8.75",
"league/flysystem": "^1.1.9"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"graham-campbell/analyzer": "^3.1",
"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.5",
"phpunit/phpunit": "^9.5"
},
"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
}