From 31f4f9b84bb3c540d81b2f633b0f7f2ce0125e08 Mon Sep 17 00:00:00 2001 From: Albin Kerouanton Date: Fri, 14 Apr 2017 00:51:49 +0200 Subject: [PATCH] Create metapackage for GridFS adapter --- README.md | 9 +++++++++ composer.json | 16 ++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 README.md create mode 100644 composer.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..d298777 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Gaufrette GridFS adapter + +This repository is a metapackage for Gaufrette GridFS adapter. + +For issues and PRs please go on [KnpLabs/Gaufrette](https://github.com/KnpLabs/Gaufrette). + +## Documentation + +Read the official [Gaufrette documentation](https://knplabs.github.io/Gaufrette/) and the documentation for this adapter [here](https://knplabs.github.io/Gaufrette/adapters/grid-fs.html). diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..fc6d2b0 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "gaufrette/gridfs-adapter", + "description": "GridFS adapter for Gaufrette", + "type": "metapackage", + "require": { + "knplabs/gaufrette": "^0.3", + "mongodb/mongodb": "~1.1.2", + "ext-mongodb": "*" + }, + "authors": [ + { + "name": "KnpLabs", + "email": "hello@knplabs.com" + } + ] +}