PHPackages                             2performant/2performant-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. 2performant/2performant-php

ActiveLibrary[HTTP &amp; Networking](/categories/http)

2performant/2performant-php
===========================

PHP wrapper for 2Performant API

1.1.0(6y ago)346.4k1[2 issues](https://github.com/2Parale/2Performant-php/issues)MITPHP

Since Jul 22Pushed 6y ago2 watchersCompare

[ Source](https://github.com/2Parale/2Performant-php)[ Packagist](https://packagist.org/packages/2performant/2performant-php)[ Docs](http://github.com/2Parale/2Performant-PHP)[ RSS](/packages/2performant-2performant-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (12)Used By (0)

2Performant PHP API
===================

[](#2performant-php-api)

The API allows you to integrate any 2Performant network in your application. It's goal is to make sure developers can implement anything that can be done via the web interface using API functions.

The API is RESTful JSON over HTTP using all four verbs (GET/POST/PUT/DELETE) using [Guzzle](http://docs.guzzlephp.org/en/latest/) as a HTTP client.

API documentation can be found at:

The PHP wrapper uses `camelCase` notation rather than the `underscore_notation` used in the HTTP API, but changes are transparent to the user using the wrapper.

Installation
============

[](#installation)

It's recommended to install the library using [Composer](http://getcomposer.org/).

```
    curl -sS https://getcomposer.org/installer | php

```

Then, install the library (along with its dependencies)

```
    php composer.phar require 2Performant/2Performant-php

```

After that, use the composer autoloader in your PHP script

```
