Deprecated
#Crypto
#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/crypto
#Development
- Fork the package .
- Clone your forked repository.
1git clone https://github.com/<githubusername>/php-crypto
- Next, move into the cloned directory.
1cd php-crypto
- 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 3 years ago
Edit Page