You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
13
11
Ziptastic PHP can be installed via composer:
14
12
15
13
````
16
-
composer require kregel/ziptastic
14
+
composer require ziptastic/guzzle
17
15
````
18
16
19
17
## Usage
@@ -26,7 +24,7 @@ The first way to use this is by using `Zipper` which will be using a more "plain
26
24
27
25
include "vendor/autoload.php";
28
26
29
-
use Kregel\Ziptastic\Zipper;
27
+
use Ziptastic\Guzzle\Zipper;
30
28
31
29
$key = 'Your Api Key from ziptastic';
32
30
@@ -42,7 +40,7 @@ If that isn't your cup of tea or you just want to get things done, you can use `
42
40
43
41
include "vendor/autoload.php";
44
42
45
-
use Kregel\Ziptastic\Ziptastic;
43
+
use Ziptastic\Guzzle\Ziptastic;
46
44
47
45
$key = 'Your Api Key from ziptastic';
48
46
@@ -60,7 +58,7 @@ The first way to use this is by using `Zipper` which will be using a more "plain
0 commit comments