ynotna/igdb-php

PHP Facade/Wrapper for the IGDB API

dev-master 2017-01-29 22:53 UTC

This package is not auto-updated.

Last update: 2024-04-13 23:51:40 UTC


README

PHP Facade/Wrapper for the IGDB API (Mashape)

Usage

// Set your API KEY
define('API_KEY', 'Your_Mashape_Key');

// Instancie client
$client = new YnotnA\Igdb\IgdbApi(API_KEY);

// Get games by search.
$games = $client->getGames('mario', array('name'), 10, 0);