cyrilkioskemploi / itwapp-php
InterviewApp PHP Library
1.2.0
2018-09-26 12:18 UTC
Requires
- php: ^5.6 || ^7.0
- guzzlehttp/guzzle: 6.2.2
Requires (Dev)
- phpunit/phpunit: 5.6.2
- satooshi/php-coveralls: 2.0.x-dev
This package is not auto-updated.
Last update: 2025-03-30 22:04:11 UTC
README
You can sign up for an InterviewApp account at https://itwapp.io.
Requirements
PHP 5.6 and later.
Composer
You can install the bindings via Composer. Add this to your composer.json
:
{
"require": {
"itwapp/itwapp-php" : "1.2.0"
}
}
Then install via:
composer.phar install
To use the bindings, either user Composer's autoload:
require_once('vendor/autoload.php');
Or manually:
require_once('/path/to/vendor/itwapp/itwapp-php/lib/Itwapp.php');
Manual Installation
Obtain the latest version of the Itwapp PHP bindings with:
git clone https://github.com/itwapp/itwapp-php
To use the bindings, add the following to your PHP script:
require_once("/path/to/itwapp-php/lib/Itwapp.php");
Getting Started
Simple usage looks like:
Itwapp::setApiKey("627c8047c69c25b7e1db3064b61917e0");
Itwapp::setApiSecretKey("a6e38238874cb44f4efd6bc462853cd8fd39da62");
$interviews = Interview::findAll(array());
Documentation
Please see http://api.itwapp.io/ for up-to-date documentation.