A simple wrapper for the Imagga API.
composer require fabriceclementz/imagga-php
use GuzzleHttp\Client as HttpClient;
use Fab\Imagga\Client;
$client = new Client(new HttpClient(), 'IMAGGA_API_KEY', 'IMAGGA_API_SECRET');
$response = $client->tags('https://imagga.com/static/images/tagging/wind-farm-538576_640.jpg');
use GuzzleHttp\Client as HttpClient;
use Fab\Imagga\Client;
$client = new Client(new HttpClient(), 'IMAGGA_API_KEY', 'IMAGGA_API_SECRET');
$response = $client->colors('https://imagga.com/static/images/tagging/wind-farm-538576_640.jpg');
composer test