danabrey / dynastyprocess-php
PHP library for fetching Dynasty Process player valuations
v1.8
2025-06-26 08:12 UTC
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.