mnib-dev / urgentcargus
A very simple PHP Wrapper for the UrgentCargus API
Installs: 11 786
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: ^7.2.5 || ^8.0.2
- ext-curl: *
- ext-json: *
- guzzlehttp/guzzle: ^6.0 || ^7.0.1
Requires (Dev)
- mnib-dev/coding-standard: dev-master
Replaces
- mnib-dev/urgentcargus-php: v0.9.12
- mnib/urgentcargus-php: v0.9.12
This package is auto-updated.
Last update: 2025-03-29 01:00:37 UTC
README
The API is RESTful JSON over HTTP using GuzzleHttp as a HTTP client.
Usage example
$client = new \MNIB\UrgentCargus\Client($apiKey, $apiUri); $client->createAccessToken('username', 'password'); $result = $client->get('PickupLocations'); $params = [ 'Sender' => [], 'Recipient' => [], 'Parcels' => 1, 'TotalWeight' => 1, 'DeclaredValue' => 1000, 'CashRepayment' => 1000, 'BankRepayment' => 0, 'OpenPackage' => true, 'SaturdayDelivery' => false, 'PackageContent' => 'awb content', 'CustomString' => $orderId, ]; $awbId = $client->post('Awbs', $params);