bakerkretzmar / zttp
A developer-experience focused HTTP client, optimized for most common use cases.
0.6.1
2019-11-29 13:48 UTC
Requires
- php: >=7.2
- guzzlehttp/guzzle: ^6.4
- tightenco/collect: ^6.5
Requires (Dev)
- laravel/lumen-framework: ^6.2
- phpunit/phpunit: ^7.5
README
Zttp is a simple Guzzle wrapper designed to provide a really pleasant development experience for most common use cases.
If you need more functionality, just use Guzzle :)
Real documentation is in the works, but for now read the tests.
$response = Zttp::withHeaders(['Fancy' => 'Pants'])->post($url, [ 'foo' => 'bar', 'baz' => 'qux', ]); $response->status(); // int $response->isOk(); // true / false $response->json(); // => [ // 'whatever' => 'was returned', // ];
Installation
composer require bakerkretzmar/zttp