PHP cryptocurrency payment processor based on ForgingBlock API
PHP 5.6.0 and later.
you can download the latest release
Open a MySql client (phpMyAdmin, etc.), create a new database (and user) and import database.sql
edit inc/config.php and set those
'app' => array(
'debug' => true,
'forgingblock_token' => '',
'forgingblock_trade' => '',
'forgingblock_env' => 'test',
'url' => 'http://localhost/forgingblock-multicoin/',
'expiring_time' => 43200,
'timezone' => 'UTC',
),
//Mysql Database connection
'mysql' => array(
'database' => 'forgingblock_mcrypto',
'username' => '',
'password' => '',
'hostname' => 'localhost',
'prefix' => '',
'driver' => 'mysqli',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci'
)
Simple usage edit index.php
$data = array (
"amount"=>1,
"currency"=>"USD",
"coin"=>"BTC",
"order_id"=>'T0001',
"notifyurl"=>$notifyURL,
);