In this repo i store all my websites, each in a different branch
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
769 B

  1. # How to Contribute
  2. ## Pull Requests
  3. 1. Fork this repository
  4. 2. Create a new branch for each feature or improvement
  5. 3. Send a pull request from each feature branch
  6. It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch. This allows me to review and pull in new features or improvements individually.
  7. ## Style Guide
  8. 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).
  9. ## Unit Testing
  10. All pull requests must be accompanied by passing unit tests and complete code coverage. The Slim Framework uses phpunit for testing.
  11. [Learn about PHPUnit](https://github.com/sebastianbergmann/phpunit/)