Proworkflow API
PHP wrapper for Proworkflow API., (*1)
Currently, it provides a 'read-only' access layer to the API... The ability to add, update resources on your Proworkflow instance, has not been implemented yet., (*2)
More info on the API: https://api.proworkflow.net/?calls#!, (*3)
Installing Proworkflow API
The recommended way to install Proworkflow API is through Composer., (*4)
Install Composer
curl -sS https://getcomposer.org/installer | php
, (*5)
Next, run the Composer command to install the latest stable version of Guzzle:, (*6)
php composer.phar require ascalabro/proworkflow
, (*7)
After installing, you need to require Composer's autoloader:, (*8)
require 'vendor/autoload.php';
, (*9)
You can then later update Proworkflow API using composer:, (*10)
php composer.phar update
, (*11)