From 03255f33dda7cfcaf3769a78b1ce6eb0c6e12933 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 7 Mar 2017 15:19:20 +0200 Subject: [PATCH] Add Omnipay steps to configure docs --- docs/configure.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/configure.rst b/docs/configure.rst index b9c16327ec42..7e6eee2a2854 100644 --- a/docs/configure.rst +++ b/docs/configure.rst @@ -72,6 +72,19 @@ Follow these steps to add custom ttf fonts: ie, Google fonts - Run ``php artisan db:seed --class=FontsSeeder`` - Clear the cache by adding ``?clear_cache=true`` to the end of the URL +Omnipay +""""""" + +We use `Omnipay `_ to support our payment gateway integrations. + +Follow these steps to add a driver. + +- Add the package to composer.json and then run ``composer install`` +- Add a row to the gateways table. ``name`` is used in the gateway select, ``provider`` needs to match the Omnipay driver name +- Clear the cache by adding ``?clear_cache=true`` to the end of the URL + +.. NOTE:: Most drivers also require `code changes `_ to work correctly. + Google Map """"""""""