#Client
#Install Composer
Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.
To install Composer on your system, follow this guide for Unix and OSx and this guide for Windows.
#Install package with Composer
composer require arkecosystem/client
#Development
- Fork the package.
- Clone forked repository.
git clone https://github.com//php-client
- Next, move into the cloned directory.
cd php-client
- Install the dependencies with composer.
composer install
- Dependencies are now installed, you can now run the tests to see if everything is running as it should.
phpunit
Last updated 3 months ago
Edit Page