forked from 1up-lab/OneupFlysystemBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (50 loc) · 1.94 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
{
"name": "oneup/flysystem-bundle",
"type": "symfony-bundle",
"description": "Integrates Flysystem filesystem abstraction library to your Symfony2 project.",
"keywords": ["symfony2", "flysystem", "filesystem", "abstraction"],
"homepage": "http://1up.io",
"license": "MIT",
"authors": [
{
"name": "Jim Schmid",
"email": "[email protected]",
"homepage": "http://1up.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": ">=2.0",
"league/flysystem": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"symfony/finder": ">=2.0",
"symfony/browser-kit": ">=2.0",
"league/flysystem-aws-s3-v2": "~1.0",
"league/flysystem-cached-adapter": "~1.0",
"league/flysystem-copy": "~1.0",
"league/flysystem-dropbox": "~1.0",
"league/flysystem-gridfs": "~1.0",
"league/flysystem-rackspace": "~1.0",
"league/flysystem-sftp": "~1.0",
"league/flysystem-webdav": "~1.0",
"league/flysystem-ziparchive": "~1.0"
},
"suggest": {
"ext-fileinfo": "Required for MimeType",
"league/flysystem-aws-s3-v2": "Use S3 storage with AWS SDK v2",
"league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
"league/flysystem-copy": "Allows you to use Copy.com storage",
"league/flysystem-dropbox": "Use Dropbox storage",
"league/flysystem-gridfs": "Allows you to use GridFS adapter",
"league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
"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"
},
"autoload": {
"psr-4": { "Oneup\\FlysystemBundle\\": "" }
}
}