Deprecated
#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
1composer require arkecosystem/client
#Development
- Fork the package .
 - Clone forked repository.
 
1git clone https://github.com/<githubusername>/php-client
- Next, move into the cloned directory.
 
1cd php-client
- Install the dependencies with composer.
 
1composer install
- Dependencies are now installed, you can now run the tests to see if everything is running as it should.
 
1phpunit
            
        Last updated 4 years ago
                                            
    
    Edit Page