pinvandaag/routit-api-php

A PHP wrapper for the RoutIT API

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

pkg:composer/pinvandaag/routit-api-php

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();