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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
{
"name": "oneup/flysystem-bundle",
"type": "symfony-bundle",
"description": "Integrates Flysystem filesystem abstraction library to your Symfony project.",
"keywords": [
"symfony",
"flysystem",
"filesystem",
"abstraction"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "Jim Schmid",
"email": "js@1up.io",
"homepage": "https://1up.io",
"role": "Developer"
},
{
"name": "David Greminger",
"email": "dg@1up.io",
"homepage": "https://1up.io",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"league/flysystem": "^1.0.26",
"symfony/config": "^3.4 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0",
"symfony/http-kernel": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"async-aws/flysystem-s3": "^1.0",
"jenko/flysystem-gaufrette": "^1.0",
"league/flysystem-aws-s3-v2": "^1.0",
"league/flysystem-azure-blob-storage": "^0.1",
"league/flysystem-cached-adapter": "^1.0",
"league/flysystem-gridfs": "^1.0",
"league/flysystem-memory": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/flysystem-replicate-adapter": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"league/flysystem-ziparchive": "^1.0",
"litipk/flysystem-fallback-adapter": "^0.1",
"phpunit/phpunit": "^6.5 || ^7.5 || ^8.5",
"spatie/flysystem-dropbox": "^1.0",
"superbalist/flysystem-google-storage": "^4.0",
"symfony/asset": "^3.4 || ^4.0 || ^5.0",
"symfony/browser-kit": "^3.4 || ^4.0 || ^5.0",
"symfony/finder": "^3.4 || ^4.0 || ^5.0",
"symfony/templating": "^3.4 || ^4.0 || ^5.0",
"symfony/translation": "^3.4 || ^4.0 || ^5.0",
"symfony/yaml": "^3.4 || ^4.0 || ^5.0",
"twistor/flysystem-stream-wrapper": "^1.0"
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
"ext-ftp": "Required for FTP and SFTP",
"jenko/flysystem-gaufrette": "Allows you to use gaufrette adapter",
"league/flysystem-aws-s3-v2": "Use S3 storage with AWS SDK v2",
"league/flysystem-aws-s3-v3": "Use S3 storage with AWS SDK v3",
"league/flysystem-azure-blob-storage": "Allows you to use Azure Blob Storage adapter",
"league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
"league/flysystem-gridfs": "Allows you to use GridFS adapter",
"league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
"league/flysystem-replicate-adapter": "Allows you to use the Replicate adapter from Flysystem",
"league/flysystem-sftp": "Allows SFTP server storage via phpseclib",
"league/flysystem-webdav": "Allows you to use WebDAV storage",
"league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
"litipk/flysystem-fallback-adapter": "Allows you to use a fallback filesystem",
"spatie/flysystem-dropbox": "Use Dropbox storage",
"superbalist/flysystem-google-storage": "Allows you to use Google Cloud Storage buckets",
"twistor/flysystem-stream-wrapper": "Allows you to use stream wrapper"
},
"conflict": {
"async-aws/flysystem-s3": "<1.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Oneup\\FlysystemBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Oneup\\FlysystemBundle\\Tests\\": "tests"
}
}
}
|