PHP SDK
This page has all the information needed to install and setup the BLOOCK's SDK for PHP. If you are looking for documentation related to an specific functionality, please refer to it's specific section.
To run the SDK for PHP you will need:
- PHP version >= 7.4
- PHP's FFI extension enabled
The PHP SDK is available through Packagist, to install it, you can run the following command:
Composer
composer require bloock/sdk
To start working with most of the functionalities of our SDKs, you will need an API Key. Please, follow the instructions of Create an API Key to get one.
Here's the code needed to properly configure the SDK with the API Key:
PHP
\Bloock\Bloock::$apiKey = getenv("API_KEY");
Last modified 2mo ago