From e174094b4ad229fb1ef8f018e04584207e15dda3 Mon Sep 17 00:00:00 2001 From: Jan Iwanow Date: Mon, 8 Apr 2019 08:25:48 +1100 Subject: [PATCH] Updated README --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8a557e..d59694f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ -# doctrine-bulk-insert -Bulk insert functionality for the Doctrine 2 +# Doctrine/DBAL Bulk Insert +The library is based on the [gist](https://gist.github.com/gskema/a182aaf7cc04001aebba9c1aad86b40b) and provides bulk insert functionality to the [Doctrine/DBAL](https://github.com/doctrine/dbal). + +## Usage + +```php +execute('foo', [ + ['foo' => 111, 'bar' => 222], + ['foo' => 333, 'bar' => 444], +]); +``` \ No newline at end of file