- Fork the repo
- Clone the repo to local
- Install dependencies:
composer update
(this assumes you have 'composer' aliased to wherever your composer.phar lives) - Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate.
Pull requests with new features needs to be created against master branch.
If new feature require BC Break please note that in your PR comment, it will added in next major version. New features that does not have any BC Breaks are going to be added in next minor version.
In order to fix codding standards please execute:
make lint-phpstan
make lint-rector
make lint-rector-fix
- Check the oldest version that patch/bug fix can be applied.
- Create PR against that version
- Make the changes/additions to the code, committing often and making clear what you've done
- Make sure you write tests for your code, located in the folder structure
- Run your tests (often and while coding)
- Create Pull Request on GitHub to against proper branch