blitzr / php-client
The official Blitzr API Client for PHP
1.3.4
2017-01-19 15:11 UTC
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ^6.1
Requires (Dev)
This package is not auto-updated.
Last update: 2025-01-18 19:46:37 UTC
README
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.
Documentation
You can find the complete package documentation.
You can also refer to the official Blitzr API reference to have more informations.
Installation
Just integrate it to your project with composer and enjoy.
$ composer require blitzr/php-client
Getting Started
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');