This is a helper library for the Traitify API - https://developer.traitify.com/
The recommended way to install the Traitify library is through Composer.
# Install Composer
curl -sS https://getcomposer.org/installer | php
# Add the library as a dependency
php composer.phar require traitify/client dev-master
or alternatively, you can add it directly to your composer.json
file.
{
"require": {
"traitify/client": "dev-master"
}
}
Then install via Composer:
composer install
Finally, require Composer's autoloader in your PHP script:
require __DIR__.'/vendor/autoload.php';
http://traitify.github.io/traitify-js/
For instructions on obtaining a public key visit: https://developer.traitify.com
$client = new Traitify\Client([
'host'=>'api-sandbox.traitify.com', /* Example Host */
'version'=>'v1', /* Example Version */
'secretKey'=>'34aeraw23-3a43a32-234a34as42' /* Example Secret Key */
]);
$client->createAssessment("career-deck");
$client = new Traitify\Client([
'host'=>'api-sandbox.traitify.com', /* Example Host */
'version'=>'v1', /* Example Version */
'secretKey'=>'34aeraw23-3a43a32-234a34as42' /* Example Secret Key */
]);
$client->getSlides('a45rasw3-45s3a32-234aas45'); /* Example Assessment Id */
$client = new Traitify\Client([
'host'=>'api-sandbox.traitify.com', /* Example Host */
'version'=>'v1', /* Example Version */
'secretKey'=>'34aeraw23-3a43a32-234a34as42' /* Example Secret Key */
]);
$client->getDecks();
$client = new Traitify\Client([
'host'=>'api-sandbox.traitify.com', /* Example Host */
'version'=>'v1', /* Example Version */
'secretKey'=>'34aeraw23-3a43a32-234a34as42' /* Example Secret Key */
]);
$client->getPersonalityTypes('a45rasw3-45s3a32-234aas45'); /* Example Assessment Id */
$client = new Traitify\Client([
'host'=>'api-sandbox.traitify.com', /* Example Host */
'version'=>'v1', /* Example Version */
'secretKey'=>'34aeraw23-3a43a32-234a34as42' /* Example Secret Key */
]);
$client->getPersonalityTraits('a45rasw3-45s3a32-234aas45'); /* Example Assessment Id */
Installing PHPUnit https://phpunit.de/manual/current/en/installation.html
$ composer install
$ phpunit tests/traitify_client.php