From 0ea1e1070cf079983cb51520d6e32cfba52bc425 Mon Sep 17 00:00:00 2001 From: schevalier Date: Mon, 15 May 2017 12:10:08 +0200 Subject: [PATCH] Create metapackage for Doctrine DBAL adapter --- README.md | 9 +++++++++ composer.json | 15 +++++++++++++++ 2 files changed, 24 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..297559b --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Gaufrette Doctrine DBAL adapter + +This repository is a metapackage for Gaufrette Doctrine DBAL 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/doctrine-dbal.html). diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3a55f5d --- /dev/null +++ b/composer.json @@ -0,0 +1,15 @@ +{ + "name": "gaufrette/doctrine-dbal-adapter", + "description": "Doctrine DBAL adapter for Gaufrette", + "type": "metapackage", + "require": { + "knplabs/gaufrette": "^0.3", + "doctrine/dbal": "^2.5" + }, + "authors": [ + { + "name": "KnpLabs", + "email": "hello@knplabs.com" + } + ] +}