pinvandaag/routit-api-php

A PHP wrapper for the RoutIT API

Maintainers

Package info

github.com/Pin-Voordeel-Bv/routit-api-php

pkg:composer/pinvandaag/routit-api-php

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

v0.1.5 2025-11-27 10:43 UTC

README

PHP Version Require

Status

workflow Latest Stable Version Latest Unstable Version License

About

A PHP Wrapper for the RoutIT API

Installation

composer require pinvandaag/routit-api-php

Usage example

<?php

use Inserve\RoutITAPI\RoutITAPIClient;

require 'vendor/autoload.php';

$apiClient = new RoutITAPIClient(
    baseUri: 'https://service.grexx.today'
);

$apiClient->configure(
    'username',
    'password',
    'interfaces/routit/id'
);

$result = $apiClient->customerData();