From 4d8df148bb2177959b13c29ab9bf25195f76734a Mon Sep 17 00:00:00 2001 From: Tristan Bailey Date: Mon, 17 Sep 2018 16:06:20 +0100 Subject: [PATCH] Updated README to have right namespace ventepos/ not the old fork and namespace just \Bluesnap now --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0ebdab5..f391ea7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This library currently supports: Install this package with composer ```shell -composer require tdanielcox/bluesnap-php +composer require ventepos/bluesnap-php ``` ### Usage @@ -32,7 +32,7 @@ Initialize the library in your class constructor public function __construct() { $environment = 'sandbox'; // or 'production' - \tdanielcox\Bluesnap\Bluesnap::init($environment, 'YOUR_API_KEY', 'YOUR_API_PASSWORD'); + \Bluesnap\Bluesnap::init($environment, 'YOUR_API_KEY', 'YOUR_API_PASSWORD'); } ``` @@ -41,7 +41,7 @@ Create a New Transaction ```php public function createTransaction() { - $response = \tdanielcox\Bluesnap\CardTransaction::create([ + $response = \Bluesnap\CardTransaction::create([ 'creditCard' => [ 'cardNumber' => '4263982640269299', 'expirationMonth' => '02', @@ -67,7 +67,7 @@ public function createTransaction() } ``` -#### See [examples](https://github.com/tdanielcox/bluesnap-php/tree/master/examples) for further details on using the library +#### See [examples](https://github.com/ventepos/bluesnap-php/tree/master/examples) for further details on using the library ## License -This package is licensed under the [MIT License](https://github.com/tdanielcox/bluesnap-php/blob/master/LICENSE) +This package is licensed under the [MIT License](https://github.com/ventepos/bluesnap-php/blob/master/LICENSE)