Yet another guzzle wrapper.
Documentation is still in the works. Checkout the tests for a rough idea.
A Laravel package is available here. It provides some neat features like being able to save files to your existing filesystems.
$response = Nana::get('https://httpbin.org/get');
$response->status() // 200
$response->json()->url // "https://httpbin.org/get"
$response->body() // Raw JSON string
$response->getHeaderLine('Date') // All calls are forwarded to the underlying PSR-7/Guzzle Response instancecomposer require ksmz/nana
