From d8b2093eed485769d458b655867746ebe6a1562e Mon Sep 17 00:00:00 2001 From: Kan Yilmaz Date: Mon, 6 Nov 2017 09:04:19 -0800 Subject: [PATCH 1/2] Create CONTRIBUTING.md --- CONTRIBUTING.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..f8d4e37 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,17 @@ +# Contributing to Cloudflare PHP API Binding + +👍🎉 First off, thanks for taking the time to contribute! 🎉👍 + +## How To Contribute + +We welcome community contribution to this repository. To help add functionality or address issues, please take the following steps: + +* Fork the repository from the master branch. +* Create a new branch for your features / fixes. +* Make the changes you wish to see. +* Add tests for all changes. +* Run `make fix` command to ensure the code is styled. +* Run `make test` command to ensure the tests pass. +* Create a pull request with details of what changes have been made and explanation of new behaviour. +* Ensure documentation contains the correct information. +* Pull requests will be reviewed and hopefully merged into a release. From 8ee1bbcc6ffc3598ac2cf49e75a42c3a9a44c6be Mon Sep 17 00:00:00 2001 From: Kan Yilmaz Date: Mon, 6 Nov 2017 09:06:23 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e984b9..01ab2e9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ The recommended way to install this package is via the Packagist Dependency Mana The Cloudflare API can be found [here](https://api.cloudflare.com/). Each API call is provided via a similarly named function within various classes in the **Cloudflare\API\Endpoints** namespace: - - [x] [DNS Records](https://www.cloudflare.com/dns/) - [x] Zones - [x] User Administration (partial) @@ -38,6 +37,10 @@ $user = new Cloudflare\API\Endpoints\User($adapter); echo $user->getUserID(); ``` +## Contributions + +We welcome community contribution to this repository. [CONTRIBUTING.md](CONTRIBUTING.md) will help you start contributing. + ## Licensing Licensed under the 3-clause BSD license. See the [LICENSE](LICENSE) file for details.