Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.
- Fork the project
- Create a new branch
- Code, test, commit and push
- Open a pull request detailing your changes.
- Please ensure the coding style running
composer lint. - Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
- You may need to rebase to avoid merge conflicts.
Clone your fork, then install the dev dependencies:
composer installTo run all of the below checks with one command, run:
composer test:allFormat your code:
composer formatRun the test suite:
composer testRun PHPStan:
composer analyzeThe documentation is built using Vitepress and located in /docs.
We use pnpm for package management.
To run the site locally, run:
cd docs
pnpm i
pnpm docs:dev