2017 © Pedro Peláez
 

library deckbrew-api

PHP DeckBrew Api

image

felixdelval/deckbrew-api

PHP DeckBrew Api

  • Friday, May 20, 2016
  • by fe_lix_
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Deckbrew API

travis-ci Coverage Status, (*1)

A PHP wrapping of the DeckBrew Api. Find their documentation (here)[https://deckbrew.com/api/]., (*2)

Usage

You can instantiate the client either via the factory:, (*3)

$client = DeckBrew\ClientFactory::create();

Or you can create it directy injecting your own Guzzle Http Client, (*4)

$client = new DeckBrew\Client($httpClient);

To make a request :, (*5)

use DeckBrew\Criteria;
use DeckBrew\Criteria\Specifications as Spec;

$client->searchCard(new Criteria\CardSearch([
    Spec\WithName('some name'),
]);

The Versions

20/05 2016

dev-master

9999999-dev

PHP DeckBrew Api

  Sources   Download

MIT

The Requires

 

The Development Requires