In this repo i store all my websites, each in a different branch
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

19 rader
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/)