Skip to content

g7mzr/restclient-php

Repository files navigation

PHP RestFULL PHP CLIENT

Introduction

I wrote this module to allow testing of the Webtemplate RestFull API using phpunit.

It is of course possible to use the module to access other websites using the RestFull API providing all the data is passed using JSON.

Installation

To load the latest release add the following to your composer.json file

{
    "require": {
        "g7mzr/restclient-php": "*"
    },
    "repositories": [
        {
            "type": "vcs",
            "url":  "https://github.com/g7mzr/restclient-php.git"
        }
    ]
}

To load the development version add the following to your compose.json file

{
    "require": {
        "g7mzr/restclient-php": "dev-master"
    },
    "repositories": [
        {
            "type": "vcs",
            "url":  "https://github.com/g7mzr/restclient-php.git"
        }
    ]
}

Getting Started

Setting Headers

TBC

Launching Client

TBC

Decoding Response

TBC

Changelog

For latest changes see CHANGELOG.md file.

Reporting Bugs

TBC

Contributing

We love to have your help to make restclient-php better. See CONTRIBUTING.md for more information about contributing and developing php-webdriver.