Client • Server • Message • Examples • Changelog • Contributing
Everyone is welcome to help out! But to keep this project sustainable, please ensure your contribution respects the requirements below.
Requirements on pull requests;
- All tests MUST pass.
- Code coverage MUST remain at 100%.
- Code MUST adhere to PSR-1 and PSR-12 code standards.
Base your patch on corresponding version branch, and target that version branch in your pull request.
v1.6-master
current versionv1.5-master
previous version, bug fixes only- Older versions should not be target of pull requests
Install or update dependencies using Composer.
# Install dependencies
make install
# Update dependencies
make update
This project uses PSR-1 and PSR-12 code standards.
# Check code standard adherence
make cs-check
Unit tests with PHPUnit, coverage with Coveralls
# Run unit tests
make test
# Create coverage
make coverage