# cli **Repository Path**: web/cli ## Basic Information - **Project Name**: cli - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-08-31 - **Last Updated**: 2026-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Web3 PHP

GitHub Workflow Status (master) Total Downloads Latest Version License

------ **Web3 PHP CLI** is a blazing fast blockchain server for local development. > This project is a work-in-progress. Code and documentation are currently under development and are subject to change. ## Get Started > **Requires [PHP 8.0+](https://php.net/releases/)** First, install Web3 via the [Composer](https://getcomposer.org/) package manager: ```bash composer global config prefer-stable true composer global config minimum-stability dev composer global require web3-php/cli ``` Then, start the local blockchain server: ``` web3 ``` ## Options ### `accounts` The `accounts` option allows to specify the number of accounts. ```bash web3 --accounts=5 # Default: 5 ``` ### `host` The `host` option allows to specify the hostname to listen on. ```bash web3 --host=127.0.0.2 # Default: 127.0.0.1 ``` ### `port` The `port` option allows to specify the port number to listen on. ```bash web3 --port=8550 # Default: 8545 ``` --- Web3 PHP CLI is an open-sourced software licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.