First off, thank you for considering contributing to Stochastix! It's people like you that make open source such a great community.
If you find a bug, please ensure the bug was not already reported by searching on GitHub under Issues.
If you're unable to find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and a code sample or an executable test case demonstrating the expected behavior that is not occurring.
Enhancement suggestions are tracked as GitHub issues. Create an issue on that repository and describe the enhancement you would like to see, why it would be useful, and any implementation ideas you may have.
- Fork the repository and create your branch from
master. - Ensure the test suite passes with your changes. Run
make test. - If you've added code that should be tested, add new tests.
- Make sure your code lints. We use
php-cs-fixerandphpstan. Runmake fixandmake stan. - Issue that pull request!
This project follows the PER-CS2.0 coding standard. To automatically format your code before committing, you can run:
make fix