PHP code example of finix / processing-php

1. Go to this page and download the library: Download finix/processing-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

finix / processing-php example snippets






use \Finix\Settings;
use \Finix\Bootstrap;

Settings::configure([
    "root_url" => "https://api-staging.finix.io",
    "username" => 'US4CoseCAaB5RjTYrnwfDrZa',
    "password" => '4ca5aef5-f077-4277-a785-00f2cab07c21'
]);

Bootstrap::init();
bash
composer