A PHP client (fancy named SDK) to access Prosperworks API. Default HTTP library is CURL but it works with Guzzle too.
Note: this is not an official Prosperworks package; all product names, logos, and brands are property of their respective owners.
With Composer. Add the Prosperworks PHP SDK package to your composer.json
file.
{
"require": {
"prosperworks/php-sdk-v1": "~1.0"
}
}
Note: PHP 5.4 or greater is required.
Using
$config = array(
'access_token' => 'YOURACCESSTOKENHERE',
'user_email' => 'youremail@domain.com'
// 'client_http' => 'guzzle' // if you want to use guzzle 5.0
);
$app = new Prosperworks($config);
$result = $app->post('companies/search');
print_r($result);
- Composer is a prerequisite for running the tests.
Install composer globally, then run
composer install
to install required files. - Get API credentials from Prosperworks and update the $config array.
- The tests can be executed by running this command from the root directory:
$ ./vendor/bin/phpunit