A developer-experience focused HTTP client, optimized for most common use cases.
Daniel Supernault e78af39d75 bump guzzle dep | 2 년 전 | |
---|---|---|
src | 6 년 전 | |
tests | 6 년 전 | |
.gitattributes | 7 년 전 | |
.gitignore | 7 년 전 | |
.travis.yml | 7 년 전 | |
CONTRIBUTING.md | 7 년 전 | |
LICENSE.md | 7 년 전 | |
README.md | 7 년 전 | |
composer.json | 2 년 전 | |
phpunit.xml.dist | 7 년 전 |
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->json();
// => [
// 'whatever' => 'was returned',
// ];
composer require kitetail/zttp