CONTRIBUTING.md (672B)
1 Contributing 2 ------------ 3 4 Prophecy is an open source, community-driven project. If you'd like to contribute, 5 feel free to do this, but remember to follow this few simple rules: 6 7 - Make your feature addition or bug fix, 8 - Add either specs or examples for any changes you're making (bugfixes or additions) 9 (please look into `spec/` folder for some examples). This is important so we don't break 10 it in a future version unintentionally, 11 - Commit your code, but do not mess with `CHANGES.md`, 12 13 Running tests 14 ------------- 15 16 Make sure that you don't break anything with your changes by running: 17 18 ```bash 19 $> composer install --dev --prefer-dist 20 $> vendor/bin/phpspec run 21 ```