CONTRIBUTING.md (809B)
1 # How to Contribute 2 3 ## Pull Requests 4 5 1. Fork the Slim Framework repository 6 2. Create a new branch for each feature or improvement 7 3. Send a pull request from each feature branch to the **develop** branch 8 9 It is very important to separate new features or improvements into separate feature branches, and to send a 10 pull request for each branch. This allows me to review and pull in new features or improvements individually. 11 12 ## Style Guide 13 14 All pull requests must adhere to the [PSR-2 standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md). 15 16 ## Unit Testing 17 18 All pull requests must be accompanied by passing unit tests and complete code coverage. The Slim Framework uses phpunit for testing. 19 20 [Learn about PHPUnit](https://github.com/sebastianbergmann/phpunit/)