Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.92 KB

CONTRIBUTING.md

File metadata and controls

55 lines (42 loc) · 1.92 KB

Contributing guide to PHP resources

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

Other notes

Style guide

This repository uses Markdown syntax. Please follow Markdown style guides:

Images in object oriented programming and design patterns

Images in design patterns questions are made with draw.io tool.

Generating FB document

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

License

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.