php-mtg / mtg-api-com-mtgstocks-object
A library that implements the php-mtg/mtg-api-com-mtgstocks-interface library
Package info
gitlab.com/php-mtg/mtg-api-com-mtgstocks-object
pkg:composer/php-mtg/mtg-api-com-mtgstocks-object
9.0.6
2026-05-20 19:28 UTC
Requires
Requires (Dev)
This package is auto-updated.
Last update: 2026-06-20 17:44:51 UTC
README
A library that implements the php-mtg/mtg-api-com-mtgstocks-interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-mtg/mtg-api-com-mtgstocks-object ^9
Basic Usage
This library may be used the following way :
use PhpMtg\Mtgstocks\MtgstocksApiEndpoint;
/* @var $client \Psr\Http\Client\ClientInterface */
$endpoint = new MtgstocksApiEndpoint($client);
$collection = $this->_endpoint->getSetsInformation();
foreach($collection as $setResume)
{
/** @var \PhpMtg\Mtgstocks\MtgstocksApiSetPrezInterface $meta */
$set = $this->_endpoint->getSet($setResume->getId());
// do something with set
}
License
MIT (See license file).