mnib / urgentcargus-php
PHP Wrapper for the UrgentCargus API
Installs: 59
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
pkg:composer/mnib/urgentcargus-php
Requires
- php: ^5.5|^7.0
- guzzlehttp/guzzle: ^6.2
This package is not auto-updated.
Last update: 2025-10-14 09:25:31 UTC
README
The API is RESTful JSON over HTTP using GuzzleHttp as a HTTP client.
Usage Examples
$client = new \MNIB\UrgentCargus\Client($apiKey, $apiUri);
...
$token = $client->getToken('username', 'password');
...
$result = $client->get('PickupLocations', [], $token);