ylorant/horaro-php-client

Horaro API PHP client library

Installs: 109

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ylorant/horaro-php-client

1.2 2021-05-27 14:03 UTC

This package is auto-updated.

Last update: 2025-10-27 23:58:17 UTC


README

This is a PHP library to consume the Horaro API from your PHP projects.

Installation

Install it via composer :

composer require ylorant/horaro-php-client

Usage

Here is an example of how to use the library :

<?php
use Horaro\Client as HoraroClient;

$client = new HoraroClient();
$schedule = $client->getSchedule('speedcombo', 'sta-twitch');

// $schedule is a stdClass object.

You can check https://horaro.org/-/api for more info about the objects returned by the API.

Have fun.