1. Go to this page and download the library: Download bmcfarlin/gigwage-php-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bmcfarlin / gigwage-php-sdk example snippets
igWage\Client;
$client = new Client();
igWage\Client;
$client = new Client("your_api_key", "your_api_secret", "your_gigwage_url");
$client->resources->create($params) # Create
$client->resources->get($id) # Get
$client->resources->update($id, $params) # Update
$client->resources->delete($id) # Delete
$client->resources->list() # List all resources, max 200 at a time
igWage\Client;
$client = new Client();
$json = $client->contractor->list();