blitzr/php-client
Official PHP client for the Blitzr API. Install via Composer, authenticate with your API key, and access Blitzr resources like artists through a simple, lightweight client (e.g., getArtist). Includes docs and links to the API reference.
A PHP API client for the Blitzr API.
To use this client you will need an API key, you can request it at : https://blitzr.io.
You can find the complete package documentation.
Just integrate it to your project with composer and enjoy.
$ composer require blitzr/php-client
Just require the composer autoloader in your PHP file and use the client :
// require the composer autoloader
require 'vendor/autoload.php';
// use the Blitzr client
use Blitzr\BlitzrClient;
// create an instance of Blitzr client
$blitzr = new BlitzrClient('your-api-key');
// request an artist
$artist = $blitzr->getArtist('year-of-no-light');
How can I help you explore Laravel packages today?