Giter VIP home page Giter VIP logo

mtg-sdk-php's Introduction

Magic: The Gathering SDK

Latest Stable Version License composer.lock Build Status Code Climate Coverage Status

This is the Magic: The Gathering SDK PHP implementation. It is a wrapper around the MTG API of magicthegathering.io.

Requirements

This library does not have any requirements.

Installation

Using composer:

composer require mtgsdk/mtgsdk:dev-master

Usage

Properties Per Class

All class properties are camel-cased and documented through class DocBlocks. They respect the API's syntax.

NOTE: All properties are READ-ONLY. You cannot modify them.

Card

name
multiverseid
layout
names
manaCost
cmc
colors
type
supertypes
subtypes
rarity
text
flavor
artist
number
power
toughness
loyalty
variations
watermark
border
timeshifted
hand
life
reserved
releaseDate
starter
rulings
foreignNames
printings
originalText
originalType
legalities
source
imageUrl
set
setName
id

Set

code
name
gathererCode
oldCode
magicCardsInfoCode
releaseDate
border
type
block
onlineOnly
booster
mkmId
mkmName

Changelog

version
releaseDate
details

Find Card by Multiverse Id

$card = Card::find(386616);

Filter Cards via Query Parameters

$cards = Card::where(['set' => 'ktk'])->where(['subtypes' => ['warrior', 'human']])->all();

Get all cards (will page through all the data - could take awhile)

$cards = Card::all();

Get all cards, but only a specific page of data

$cards = Card::where(['page' => 5, 'pageSize' => 30])->all();

Nesting conditions is also allowed

$cards = Card::where(['page' => 5])->where(['pageSize' => 30])->all();

Find a Set by code

$set = Set::find('ktk');

Get all sets

$sets = Set::all();

Filter sets via query parameters

$sets = Set::where(['name' => 'khans'])->all();

Get all types

$types = Type::all();

Get all subtypes

$subtypes = Subtype::all();

Get all supertypes

$supertypes = Supertype::all();

Get all changelogs

$changelogs = Changelog::all();

Contributing

  1. Fork it ( https://github.com/[my-github-username]/mtg-sdk-php/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

mtg-sdk-php's People

Contributors

adback03 avatar daggerhart avatar guiwoda avatar nkaliev avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.