PHP Interface to Gfycat, GET and SEARCH
composer require kevincobain2000/gfycat
composer update -vvv
Get Your ClientId and ClientSecret from Gfycat developer console
$gfycat = new Gfycat($this->clientId, $this->clientSecret);
$gfyid = 'heartfeltsorrowfulbushsqueaker';
$response = $gfycat->get($gfyid);
$gfycat = new Gfycat($this->clientId, $this->clientSecret);
$query = 'keywords';
$response = $gfycat->search($query);
vendor/bin/phpunit