Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Latest commit

 

History

History
54 lines (34 loc) · 1.9 KB

CONTRIBUTING.md

File metadata and controls

54 lines (34 loc) · 1.9 KB

Contributing

First of all, thank you for your interest in wsdl2phpgenerator, you are awesome!

Issues

If you experience problems, have questions or want to propose changes please provide as much information as possible regarding your usage.

You MUST provide the version of wsdl2phpgenerator and PHP you use.

You MUST provide all configuration arguments passed to wsdl2phpgenerator.

You SHOULD provide as much of the WSDL as possible if if the WSDL is not publicly available.

Questions can also be posted on our mailing list.

Pull requests

We have few rules to follow in order to ease code reviews, and discussions before maintainers accept and merge your work.

You MUST follow the PSR-1 and PSR-2. If you don't know about any of them, you should really read the recommendations. Can't wait? Use the PHP-CS-Fixer tool.

You MUST run the test suite.

You SHOULD write (or update) unit tests.

You SHOULD fix any new issues as identified by our static analysis suite.

You SHOULD write documentation.

Please, write commit messages that make sense, and rebase your branch before submitting your Pull Request.

One may ask you to squash your commits too. This is used to "clean" your Pull Request before merging it (we don't want commits such as fix tests, fix 2, fix 3, etc.).

Also, while creating your Pull Request on GitHub, you MUST write a description which gives the context and/or explains why you are creating it.

Thank you!