pendonl / php-club-dataservice
PHP wrapper around the Sportlink Club.Dataservice API
Installs: 126
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 6
Open Issues: 2
pkg:composer/pendonl/php-club-dataservice
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is auto-updated.
Last update: 2025-10-22 23:34:55 UTC
README
This package contains a PHP wrapper around the Sportlink Club.Dataservice API. It aims to make working with the API a breeze.
Installation
Install the package using composer:
composer require pendonl/php-club-dataservice
Require the vendor/autoload.php file:
require 'vendor/autoload.php';
Create an instance of the API using your Sportlink Club.Dataservice Client ID:
use \PendoNL\ClubDataservice\Api as KnvbApi;
$api = new KnvbApi('client_id');
Setting the API key later (DI)
You can set the 'api_key' later. So you can use it better with dependency injection. Here's an example:
// app/Providers/AppServiceProvider.php $this->app->bind(\App\Knvb\ApiInterface::class, function() { return new \App\Knvb\Api(); }); // Some other class public function handle(\App\Knvb\ApiInterface $api) { $club = $api->setApiKey('your_api_key_here')->getClub(); .... }
It al starts by getting the club details.
$club = $api->getClub()
All properties - similar to the json response provided by the API - are made public, so you are free to use $club->clubnaam for example. Once you get the club details you can proceed by requesting the teams and related entities.
$teams = $club->getTeams();
foreach($teams as $team) {
    // $team->teamnaam;
    // Get competitions
    $competitions = $team->competitions();
    
    foreach($competitions as $competition) {
    
        // $competition->competitienaam;
    
        // Fixtures
        $competition->fixtures();
        
        // Results
        $competition->results();
        
        // Table standings
        $competition->table();
        
    }
    
}
Thanks to
- KNVB Dataservice API Wrapper by @barryvdh - for providing a basis for this API wrapper.
Security
If you discover any security related issues, please email joshua@pendo.nl instead of using the issue tracker.
About Pendo
Pendo is a webdevelopment agency based in Maastricht, Netherlands. If you'd like, you can visit our website.
License
The MIT License (MIT). Please see License File for more information.