danabrey/supernova-api

PHP API wrapper for supernovafantasyfootball.com

v0.2 2024-05-17 16:23 UTC

This package is auto-updated.

Last update: 2024-05-17 16:25:03 UTC


README

PHP library for interacting with the read-only Supernova Fantasy Football API.

PHP Composer

Installation

composer require danabrey/supernova-api

Usage

Create an instance of the client

$client = new DanAbrey\SupernovaApi\SupernovaApiClient('api_key_here');

An API key is required to interact with the Supernova API. This must be passed into the client as the only argument.

$client->leagues('xxxxx') where xxxxx is the user's email address for list of user's leagues basic info
$client->league(xxxxx) where xxxxx is the league ID for league settings and franchise info

All methods return either a single instance, or an array of, objects that represent the data returned. e.g. SupernovaLeague

Note

It is your responsibility to abide by the terms of the Supernova API.

Running tests

./vendor/bin/phpunit tests