Simple Blockchain with PHP
PHP によるシンプルなブロックチェーン
- Web Server (Apache, nginx, etc)
- PHP 5.6.0+
- MySQL 5.6+
- Composer
- Edit the index.php code on line 17,18 and 26 - 28 according to your environment.
define('NODE_URL', 'http://localhost/bcphp/');
define('NEIGHBOUR_NODE_URL', '');
ORM::configure('mysql:host=localhost;dbname=bcphp');
ORM::configure('username', 'root');
ORM::configure('password', 'root');
- Place files in public directory.
- Perform initialization with Composer.
composer init
Contributions are welcome! Please feel free to submit a Pull Request.