partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 801dc8aad2d895724b9a781e12f910ce460e5b8a
parent 5d8cd9f01a2ac64775e2506cd2dcadc77febdd0a
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue, 23 Feb 2016 14:29:45 +0100

Added code contribution docs

Diffstat:
MCONTRIBUTING.md | 22+++++++++++++++++-----
1 file changed, 17 insertions(+), 5 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -3,11 +3,23 @@ Use the [GitHub issue tracker](https://github.com/partkeepr/PartKeepr) for bugs and feature requests. Please do NOT post usage or installation questions there, it is not a forum! Guidelines: -* Create one issue per bug or feature request -* Do not mix multiple bugs or feature requests into a single issue -* Search the issue tracker if the issue has already been reported -* Ensure you are running the latest version of PartKeepr -* Try to reproduce the problem on [demo.partkeepr.org](demo.partkeepr.org) prior reporting the issue and indicate in the issue that you have done so + + * Create one issue per bug or feature request + * Do not mix multiple bugs or feature requests into a single issue + * Search the issue tracker if the issue has already been reported + * Ensure you are running the latest version of PartKeepr + * Try to reproduce the problem on [demo.partkeepr.org](demo.partkeepr.org) prior reporting the issue and indicate in the issue that you have done so Use the dedicated mailing list or IRC for general questions as described on the [PartKeepr Support Page](https://www.partkeepr.org/support/). + +# Contributing Code + +Create a pull request on GitHub to contribute new features and bugfixes. + +Guidelines: + + * Use the [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) code style standard + * You can use the [php-cs-fixer](http://cs.sensiolabs.org/) to fix the code style + * Ensure all unit tests pass after your change! [Read on how to run unit tests](https://wiki.partkeepr.org/wiki/Developers/Unit_Testing) + * Contribute unit tests for new features and bugfixes if possible