1<?php
2/**
3 * This file is part of the Tmdb PHP API created by Michael Roterman.
4 *
5 * For the full copyright and license information, please view the LICENSE
6 * file that was distributed with this source code.
7 *
8 * @package Tmdb
9 * @author Michael Roterman <michael@wtfz.net>
10 * @copyright (c) 2013, Michael Roterman
11 * @version 0.0.1
12 */
13header('Content-Type: text/html; charset=utf-8');
14
15require_once '../../../vendor/autoload.php';
16require_once '../../../apikey.php';
17
18$token  = new \Tmdb\ApiToken(TMDB_API_KEY);
19$client = new \Tmdb\Client($token);
20
21$configRepository = new \Tmdb\Repository\ConfigurationRepository($client);
22$config = $configRepository->load();
23
24var_dump($config);
25