From b3d5229c3d0d6e61d06f8120880412f5f3275552 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Eduardo=20Garc=C3=ADa?= Date: Tue, 31 Oct 2017 02:50:47 +0100 Subject: [PATCH] Create contributing.md --- contributing.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 contributing.md diff --git a/contributing.md b/contributing.md new file mode 100644 index 0000000..870ab7f --- /dev/null +++ b/contributing.md @@ -0,0 +1,11 @@ +# Creating pull request +1. Open a related issue in the [Issue Tracker](https://github.com/EduardoGR/php-functional/issues) +2. Fork repository on Web Page +3. Clone this repository `git clone https://github.com/{your-username}/php-functional` +4. Create a branch with expressive name `git checkout -b {your-username}-{what-i-am-going-to-develop}` +5. Commit your changes `git commit -m "{your-username} This is what i did"` +6. Push your changes `git push origin {your-username}-{what-i-am-going-to-develop}` +7. Create a Pull Request to master on Web Page + +# Code style +php-functional follows the PSR-4 autoloading standard. -- 2.11.0