summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-11-28 15:24:36 +0100
committerRemi Collet <remi@remirepo.net>2018-11-28 15:24:36 +0100
commit17bb4d2421a9a389d6b3ad85edab8ab5a1fe3e5a (patch)
tree3e14a68769f3229a5aca0747dfc0cb86a8d80ea8 /composer.json
new package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json74
1 files changed, 74 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..1406f1a
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,74 @@
+{
+ "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": "js@1up.io",
+ "homepage": "http://1up.io",
+ "role": "Developer"
+ },
+ {
+ "name": "David Greminger",
+ "email": "dg@1up.io",
+ "homepage": "http://1up.io",
+ "role": "Developer"
+ }
+ ],
+
+ "require": {
+ "php": "^7.0",
+ "symfony/framework-bundle": "^3.3|^4.0",
+ "league/flysystem": "^1.0.26"
+ },
+
+ "require-dev": {
+ "phpunit/phpunit": "^4.4",
+ "symfony/finder": "^3.3|^4.0",
+ "symfony/browser-kit": "^3.3|^4.0",
+ "symfony/asset": "^3.3|^4.0",
+ "symfony/templating": "^3.3|^4.0",
+ "symfony/translation": "^3.3|^4.0",
+ "league/flysystem-aws-s3-v2": "^1.0",
+ "league/flysystem-cached-adapter": "^1.0",
+ "spatie/flysystem-dropbox": "^1.0",
+ "league/flysystem-gridfs": "^1.0",
+ "league/flysystem-memory": "^1.0",
+ "league/flysystem-rackspace": "^1.0",
+ "league/flysystem-sftp": "^1.0",
+ "league/flysystem-webdav": "^1.0",
+ "league/flysystem-ziparchive": "^1.0",
+ "twistor/flysystem-stream-wrapper": "^1.0",
+ "litipk/flysystem-fallback-adapter": "^0.1",
+ "jenko/flysystem-gaufrette": "^1.0",
+ "superbalist/flysystem-google-storage": "^4.0",
+ "league/flysystem-replicate-adapter": "^1.0"
+ },
+
+ "suggest": {
+ "ext-fileinfo": "Required for MimeType",
+ "ext-ftp": "Required for FTP and SFTP",
+ "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-cached-adapter": "Flysystem adapter decorator for metadata caching",
+ "spatie/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",
+ "league/flysystem-replicate-adapter": "Allows you to use the Replicate adapter from Flysystem",
+ "twistor/flysystem-stream-wrapper": "Allows you to use stream wrapper",
+ "litipk/flysystem-fallback-adapter": "Allows you to use a fallback filesystem",
+ "jenko/flysystem-gaufrette": "Allows you to use gaufrette adapter",
+ "superbalist/flysystem-google-storage": "Allows you to use Google Cloud Storage buckets"
+ },
+
+ "autoload": {
+ "psr-4": { "Oneup\\FlysystemBundle\\": "" }
+ }
+}