We love contributors and people willing to help. Below is described procedure for contributing to this repository in particular and some extra information about it.
- Fork this repository over GitHub
- Create a separate branch for instance
patch-1
so you will not need to rebase your fork if your master branch is merged
$ git clone [email protected]:your_username/php-resources
$ cd php-resources
$ git checkout -b patch-1
- Edit the content of the repository, commit changes and push to your fork
$ git add .
$ git commit -m "Fix typo in the FAQ"
$ git push origin patch-1
- Open pull request
This repository uses Markdown syntax. Please follow Markdown style guides:
Images in design patterns questions are made with draw.io tool.
Facebook FAQ document in the group is generated with build script in the main wwphp-fb.github.io repository which uses melody - one file Composer scripts:
$ sudo sh -c "curl http://get.sensiolabs.org/melody.phar -o /usr/local/bin/melody && chmod a+x /usr/local/bin/melody"
$ melody run build.php -vvv
By contributing to this repository you agree to share knowledge under the Creative Commons Attribution 4.0 International License and code under the MIT license.