Skip to content
forked from lyal/checkr

PHP SDK for the Checkr Background Service

License

Notifications You must be signed in to change notification settings

danMateer/checkr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Checkr for PHP

Build Status Scrutinizer Code Quality

A simple PHP package for interacting with the www.checkr.com's API (documentation at https://docs.checkr.com/), focusing on ease of use.

Requirements

PHP 7.0+

Installation

composer require lyal/checkr

Basic Usage

<?php
use Lyal\Checkr\Client;

$client = new Client('insert_checkr_api_key_here');

/**
 * Create a new user and send them an invitation
 */

$client->candidate(['email' => '[email protected]'])->create()->invitiation(['package' => 'tasker_pro'])->create();

Environment Variables

There are several helpful environment variables. In order for the API testing package to work, you must set checkr_test_key either with the environment variable checkr_test_key or in PHPUnit's XML file.

checkr_api_key = 'xxxxxxxxxxx'
checkr_test_key = 'xxxxxxxxxxxx'
use_collections = true

About

PHP SDK for the Checkr Background Service

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%