danabrey / dynastyprocess-php
PHP library for fetching Dynasty Process player valuations
Installs: 976
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/danabrey/dynastyprocess-php
Requires
- php: ^7.4|^8.0
- ext-json: *
- illuminate/collections: ^9.0|^10.0|^11.0|^12.0
- symfony/http-client: ^5.1|^6.0|^7.0
- symfony/property-access: ^5.1|^6.0|^7.0
- symfony/serializer: ^5.1|^6.0|^7.0
Requires (Dev)
- phpunit/phpunit: ^9
README
Provides a PHP API for accessing player valuations from DynastyProcess.com.
Installation
Via Composer:
composer require danabrey/dynastyprocess-php
Usage
use DanAbrey\DynastyProcess\Client;
$client = new Client();
$values = $client->getValues();
$values
is an array of simple DynastyProcessPlayerValue
objects.