blockscore / blockscore-php
An API wrapper for the BlockScore API using PHP.
Installs: 34 253
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 18
Forks: 14
Open Issues: 1
Requires
- php: >=5.3.29
- ext-curl: *
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-15 07:37:46 UTC
README
This is the official PHP client library of the BlockScore API. You can sign up for an account on our dashboard.
Requirements
PHP 5.3.29 and later.
Composer
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');
Manual Installation
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');
Getting Started
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);
Documentation
Our API Reference contains all of the code examples for this library.
Tests
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
Credit
This library is largely based on the wonderful stripe-php library.