Skip to content
This repository has been archived by the owner on Aug 23, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 371 Bytes

Readme.md

File metadata and controls

21 lines (14 loc) · 371 Bytes

PMG API Library

Install via Composer

composer require pathfindermediagroup/api-library

Usage

<?php

$auth = new \PathfinderMediaGroup\ApiLibrary\Auth\TokenAuth('yourapitokenhere');

$api =  new \PathfinderMediaGroup\ApiLibrary\Api\SetApi($auth);

$allSets = $api->getAll();

$specificSet = $api->get(1);

$setSearch = $api->search('ebon armor');