I love your input! I want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
If you discover a security vulnerability, please review our Security Policy for responsible disclosure instructions. Do not open a public GitHub issue for security concerns.
Pull requests are the best way to propose changes to the codebase. I actively welcome your pull requests:
- Fork the repo and create your branch from
main. - If you've added code that should be tested, add tests.
- If you've changed APIs or functions, update the documentation.
- Ensure your code follows the PSR-12 coding standard.
- Make sure your code lints and all tests pass.
- Document notable changes in your PR description for the CHANGELOG.
- Issue that pull request!
# Run the full test suite
composer test
# Run with code coverage
composer test-coverageAll pull requests must pass the existing test suite (425+ tests) before merging. If you add a new feature, include corresponding test cases.
This project follows the PSR-12 coding standard. Key points:
- Use 4 spaces for indentation (enforced by
.editorconfig) - Opening braces on the same line for control structures
- Opening braces on the next line for classes and methods
- One
usedeclaration per line - Type declarations and return types where applicable
In short, when you submit code changes, your submissions are understood to be under the same.
By contributing, you agree that your contributions will be licensed under its MIT License.