Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesryanbell committed Jul 16, 2016
1 parent 88faaca commit 697928f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jamesryanbell/cloudflare",
"description": "Cloudflare API V4 PHP wrapper",
"license": "MIT",
"version": "1.6.3",
"version": "1.6.4",
"keywords": ["cloudflare", "api"],
"authors": [
{
Expand Down
30 changes: 11 additions & 19 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
[![Build Status](https://travis-ci.org/jamesryanbell/cloudflare.svg?branch=master)](https://travis-ci.org/jamesryanbell/cloudflare)
[![Coverage Status](https://img.shields.io/coveralls/jamesryanbell/cloudflare.svg)](https://coveralls.io/r/jamesryanbell/cloudflare?branch=master)
[![Dependency Status](http://www.versioneye.com/user/projects/53e78e96e09a429c6200000a/badge.svg?style=flat)](http://www.versioneye.com/user/projects/53e78e96e09a429c6200000a)
[![Build Status](https://travis-ci.org/jamesryanbell/cloudflare.svg?branch=master)](https://travis-ci.org/jamesryanbell/cloudflare) [![Coverage Status](https://img.shields.io/coveralls/jamesryanbell/cloudflare.svg)](https://coveralls.io/r/jamesryanbell/cloudflare?branch=master) [![Dependency Status](http://www.versioneye.com/user/projects/53e78e96e09a429c6200000a/badge.svg?style=flat)](http://www.versioneye.com/user/projects/53e78e96e09a429c6200000a) [![Latest Stable Version](https://poser.pugx.org/jamesryanbell/cloudflare/v/stable.svg)](https://packagist.org/packages/jamesryanbell/cloudflare) [![Total Downloads](https://poser.pugx.org/jamesryanbell/cloudflare/downloads.svg)](https://packagist.org/packages/jamesryanbell/cloudflare) [![License](https://poser.pugx.org/jamesryanbell/cloudflare/license.svg)](https://packagist.org/packages/jamesryanbell/cloudflare)

[![Latest Stable Version](https://poser.pugx.org/jamesryanbell/cloudflare/v/stable.svg)](https://packagist.org/packages/jamesryanbell/cloudflare) [![Total Downloads](https://poser.pugx.org/jamesryanbell/cloudflare/downloads.svg)](https://packagist.org/packages/jamesryanbell/cloudflare) [![Latest Unstable Version](https://poser.pugx.org/jamesryanbell/cloudflare/v/unstable.svg)](https://packagist.org/packages/jamesryanbell/cloudflare) [![License](https://poser.pugx.org/jamesryanbell/cloudflare/license.svg)](https://packagist.org/packages/jamesryanbell/cloudflare)
# CloudFlare API - PHP

[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/jamesryanbell/cloudflare/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
The documentation for the API can be found at https://api.cloudflare.com, I will try to update this as soon as possible when new features are added to the API. If I miss one please submit a pull request.

#Cloudflare API V4 PHP wrapper
If you spot an issue with the package just let me know via issues but please include as much detail as possible, ideally with code examples, environment information etc.

A work in progress library for the Cloudflare API. The documentation for the API can be found at https://api.cloudflare.com.

I have implemented all of the methods from the available documentation but if there are more just let me know via issues please https://github.com/jamesryanbell/cloudflare/issues


##Installation
## Installation
Installation should be done via composer, details of how to install composer can be found at https://getcomposer.org/

``` bash
$ composer require jamesryanbell/cloudflare
```

Add `"jamesryanbell/cloudflare": "dev-master"` to your `composer.json` file

Run `composer update` to install the latest version.

##Usage
## Usage

In situations where you want to make multiple calls to the API across different services it's easier to create a connection to the api first and then pass that around the other services e.g.

Expand All @@ -47,5 +39,5 @@ If you are just performing a single action then you can connect to the API direc
$dns->create('12345678901234567890', 'TXT', 'name.com', '127.0.0.1', 120);
```

#License
MIT
# License
MIT

0 comments on commit 697928f

Please sign in to comment.