Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / league / container / CONTRIBUTING.md
1 # Contributing
2
3 Contributions are **welcome** and will be fully **credited**.
4
5 We accept contributions via Pull Requests on [Github](https://github.com/thephpleague/container).
6
7 ## Pull Requests
8
9 - **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
10
11 - **Add tests!** - Your patch won't be accepted if it doesn't have tests.
12
13 - **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
14
15 - **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
16
17 - **Create feature branches** - Don't ask us to pull from your master branch.
18
19 - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
20
21 - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.
22
23 ## Running Tests
24
25 ``` bash
26 $ phpunit
27 ```
28
29 **Happy coding**!