Contribute
Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.
Process
- Fork the project
- Setup your development environment
- Create a new branch
- Code, test, commit and push
- Open a pull request in the main repository detailing your changes.
- Update the documentation in the
/docs/content/en
directory according to the PR changes
Guidelines
- 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.
- Please remember that we follow SemVer.
Setup
-
Fork the main repository by clicking the Fork button
-
Clone your forked project to your development machine
git clone https://github.com/{your-github-name}/pest-plugin-laravel-11.expectations
- Create a new branch
git checkout -b my-awesome-feature
- Install the dev dependencies:
composer install
Test your code
Lint
Lint your code to ensure it fulfills our package styling standards:
composer lint
Tests
Run all tests:
composer test
Check types:
composer test:types
Unit tests:
composer test:unit