mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
1.0 KiB
1.0 KiB
CONTRIBUTING
Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.
Process
- Fork the project
- Create a new branch
- Code, test, commit and push
- Open a pull request detailing your changes. Make sure to follow the template
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
Clone your fork, then install the dev dependencies:
composer install
Lint
Lint your code:
composer lint
Tests
Run all tests:
composer test
Check types:
composer test:types
Unit tests:
composer test:unit
Integration tests:
composer test:integration