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
Requires
- php: ^8.2
- ext-dom: *
- guzzlehttp/guzzle: ^7.7
- phpdocumentor/reflection-docblock: ^5.3
- psr/log: ^3.0
- symfony/property-access: ^6.3|^7
- symfony/serializer: ^6.3|^7
Requires (Dev)
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^11
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^6
This package is not auto-updated.
Last update: 2026-01-09 09:27:50 UTC
README
Status
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();