The Schibsted Video Platform PHP client is written in PHP and based on the Guzzle library.
api-sdk-php can be installed using Composer by specifying svp/api-sdk-php
in your dependencies composer.json file.
Given that you have loaded the autoloads file created by composer, you are able to use the SVP Client in the following way:
<?php
use SVP\Client;
$client = Client::factory(array(
'provider' => 'yourDataProvider',
'appName' => 'appilicationUniqueName',
));
$categories = $client->fetchCategories();
Copyright (c) Verdens Gang AS