33[ ![ License] ( https://poser.pugx.org/php-tmdb/api/license.png )] ( https://packagist.org/packages/php-tmdb/api )
44[ ![ Build Status] ( https://travis-ci.org/php-tmdb/api.svg?branch=2.0 )] ( https://travis-ci.org/php-tmdb/api )
55[ ![ Code Coverage] ( https://scrutinizer-ci.com/g/php-tmdb/api/badges/coverage.png?b=2.0 )] ( https://scrutinizer-ci.com/g/php-tmdb/api/?branch=2.0 )
6- [ ![ HHVM Status ] ( http ://hhvm.h4cc.de /badge/php-tmdb/api .svg)] ( http://hhvm.h4cc.de/package/php-tmdb/api )
6+ [ ![ PHP & HHVM ] ( https ://img.shields.io /badge/php->=5.6,%20HHVM-8892BF .svg)] ( http://hhvm.h4cc.de/package/php-tmdb/api )
77
88Inspired by [ php-github-api] ( https://github.com/KnpLabs/php-github-api ) , [ php-gitlab-api] ( https://github.com/m4tthumphrey/php-gitlab-api/ ) and the Symfony Community.
99
@@ -88,7 +88,7 @@ Include Composer's autoloader:
8888require_once dirname(__DIR__).'/vendor/autoload.php';
8989```
9090
91- To use the examples provided, copy the ` apikey.php.dist ` to ` apikey.php ` and change the settings.
91+ To use the examples provided, copy the ` apikey.php.dist ` to ` apikey.php ` and change the settings.
9292
9393## Constructing the Client
9494
@@ -108,7 +108,7 @@ $client = new \Tmdb\Client($token, ['secure' => false]);
108108Caching is enabled by default, and uses a slow filesystem handler, which you can either:
109109
110110 - Replace the ` path ` of the storage of, by supplying the option in the client:
111-
111+
112112``` php
113113$client = new \Tmdb\Client($token, [
114114 'cache' => [
@@ -117,7 +117,7 @@ $client = new \Tmdb\Client($token, [
117117]);
118118```
119119 - Or replace the whole implementation with another CacheStorage of Doctrine:
120-
120+
121121``` php
122122$client = new \Tmdb\Client($token, [
123123 'cache' => [
0 commit comments