inserve / routit-api-php
A PHP wrapper for the RoutIT API
0.1.3
2024-09-30 14:35 UTC
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: ^1.10
- phpunit/phpunit: ^10.2
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^5.22
README
Status
About
A PHP Wrapper for the RoutIT API
Installation
composer require inserve/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->getCustomerData();