fisk / marketplace
marketplace.tf web API wrapper
1.0.0
2020-12-08 12:23 UTC
Requires
- php: ^7.1 || ^8.0
- guzzlehttp/guzzle: ~6.1
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ^9.4
This package is auto-updated.
Last update: 2025-03-23 11:56:04 UTC
README
Provides bindings for the public Marketplace.tf web APIs. Software design is based on da-mitchell's Steam API bindings.
Composer
composer require fisk/marketplace
Usage
<?php
$config = new Configuration([
Configuration::API_KEY => ''
]);
$client = new Marketplace($config);
$client->addRunner(new GuzzleRunner(new Client(), new GuzzleUrlBuilder()));
$client->addRunner(new DecodeJsonStringRunner());
$result = $client->run(new GetDashboardItems());
print_r($result);
?>