This is the official PHP client library of the BlockScore API. You can sign up for an account on our dashboard.
PHP 5.3.29 and later.
This library can be used through Composer. To get started, add the following to your composer.json
:
{
"require": {
"blockscore/blockscore-php": "4.*"
}
}
Make sure to install the changes:
composer.phar install
Make sure that Composer autoload is added somewhere in your project like so:
require_once('vendor/autoload.php');
If you would rather manually include the library in your project, you can download this repository and add the following line to your project:
require_once('/path/to/blockscore-php/init.php');
This is an example of creating a person verification and setting up the library:
\BlockScore\BlockScore::setApiKey('sk_test_11111111111111111111111111111111');
$person = \BlockScore\Person::create(array(
'name_first' => 'Jane',
'name_last' => 'Doe',
'birth_day' => 1,
'birth_month' => 1,
'birth_year' => 1990,
'document_type' => 'ssn',
'document_value' => '0000',
'address_street1' => '123 Something Ave',
'address_city' => 'Newton Falls',
'address_subdivision' => 'OH',
'address_postal_code' => '44444',
'address_country_code' => 'US',
));
var_dump($person);
Our API Reference contains all of the code examples for this library.
If you want to run our test suite, please install PHPUnit using Composer
composer.phar update --dev
To run the client lib's test suite, run
./vendor/bin/phpunit
This library is largely based on the wonderful stripe-php library.