From 1f7b94d74ad5ecfcdfb4be21d18aa9814d74163e Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 7 Feb 2017 20:12:44 -0500 Subject: [PATCH 1/8] Change the name from kregel/ziptastic-php-guzzle to ziptastic/guzzle --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b22aa56..610d32e 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "kregel/ziptastic", + "name": "ziptastic/guzzle", "description": "Guzzle based PHP SDK for the Ziptastic Lookup API", "require": { "php": ">=5.4" From 9220020e210eef3b722d8584c6493c82f1a1390e Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 7 Feb 2017 20:15:50 -0500 Subject: [PATCH 2/8] Update namespace --- src/Ziptastic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ziptastic.php b/src/Ziptastic.php index 904e0fd..ca85ce7 100644 --- a/src/Ziptastic.php +++ b/src/Ziptastic.php @@ -1,8 +1,8 @@ Date: Tue, 7 Feb 2017 20:18:03 -0500 Subject: [PATCH 3/8] Update namespace --- src/Zipper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Zipper.php b/src/Zipper.php index c694b38..65d1345 100644 --- a/src/Zipper.php +++ b/src/Zipper.php @@ -1,9 +1,9 @@ Date: Tue, 7 Feb 2017 20:19:18 -0500 Subject: [PATCH 4/8] Update ZiptasticRequest.php --- src/Guzzle/ZiptasticRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Guzzle/ZiptasticRequest.php b/src/Guzzle/ZiptasticRequest.php index 0d27566..22d7e59 100644 --- a/src/Guzzle/ZiptasticRequest.php +++ b/src/Guzzle/ZiptasticRequest.php @@ -1,6 +1,6 @@ Date: Tue, 7 Feb 2017 20:21:59 -0500 Subject: [PATCH 5/8] Update ZipperTest.php --- tests/ZipperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ZipperTest.php b/tests/ZipperTest.php index 7d38635..b98a2a1 100644 --- a/tests/ZipperTest.php +++ b/tests/ZipperTest.php @@ -1,6 +1,6 @@ Date: Tue, 7 Feb 2017 20:22:20 -0500 Subject: [PATCH 6/8] Update ZiptasticTest.php --- tests/ZiptasticTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ZiptasticTest.php b/tests/ZiptasticTest.php index bc2be17..ede9407 100644 --- a/tests/ZiptasticTest.php +++ b/tests/ZiptasticTest.php @@ -1,6 +1,6 @@ Date: Tue, 7 Feb 2017 20:22:42 -0500 Subject: [PATCH 7/8] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 610d32e..9e8c1cf 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ ], "autoload": { "psr-4": { - "Kregel\\Ziptastic\\": "src/" + "Ziptastic\\Guzzle\\": "src/" } } } From 4de0f9cdbff1612a39630f9445f922a846e3e94b Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 7 Feb 2017 20:34:37 -0500 Subject: [PATCH 8/8] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ab88ed8..5a7a52a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -[![Build Status](https://travis-ci.org/austinkregel/ziptastic-php-guzzle.svg?branch=master)](https://travis-ci.org/austinkregel/ziptastic-php-guzzle) - # Ziptastic PHP with Guzzle This package was brought into existence because of [this package](https://github.com/Ziptastic/ziptastic-php), specifically because of the [first enhancement](https://github.com/Ziptastic/ziptastic-php/issues/1) @@ -13,7 +11,7 @@ Using Ziptastic requires an API key, you can get one by signing up with Ziptasti Ziptastic PHP can be installed via composer: ```` -composer require kregel/ziptastic +composer require ziptastic/guzzle ```` ## Usage @@ -26,7 +24,7 @@ The first way to use this is by using `Zipper` which will be using a more "plain include "vendor/autoload.php"; -use Kregel\Ziptastic\Zipper; +use Ziptastic\Guzzle\Zipper; $key = 'Your Api Key from ziptastic'; @@ -42,7 +40,7 @@ If that isn't your cup of tea or you just want to get things done, you can use ` include "vendor/autoload.php"; -use Kregel\Ziptastic\Ziptastic; +use Ziptastic\Guzzle\Ziptastic; $key = 'Your Api Key from ziptastic'; @@ -60,7 +58,7 @@ The first way to use this is by using `Zipper` which will be using a more "plain include "vendor/autoload.php"; -use Kregel\Ziptastic\Zipper; +use Ziptastic\Guzzle\Zipper; $key = 'Your Api Key from ziptastic';