PHPackages                             wadify/wadify-sdk-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. wadify/wadify-sdk-php

ActiveLibrary

wadify/wadify-sdk-php
=====================

Wadify SDK for PHP - Use Wadify Web Services in your PHP project

1.0.7(9y ago)1182PHPPHP &gt;=5.6

Since Apr 26Pushed 9y agoCompare

[ Source](https://github.com/wadify/wadify-sdk-php)[ Packagist](https://packagist.org/packages/wadify/wadify-sdk-php)[ RSS](/packages/wadify-wadify-sdk-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (7)Versions (8)Used By (0)

wadify-sdk-php - Version 1.0.9
==============================

[](#wadify-sdk-php---version-109)

[![@wadifytech on Twitter](https://camo.githubusercontent.com/3dbc937f35948e9b381184299f5397e02c2ccfb739ffcd7192538d2f9aa860bd/687474703a2f2f696d672e736869656c64732e696f2f62616467652f747769747465722d253430776164696679746563682d626c75652e7376673f7374796c653d666c6174)](https://twitter.com/wadifytech)[![Build Status](https://camo.githubusercontent.com/e9f04b10248cf4de02e54aabbaff1eecb39c27b3490860062f135c01b5ebc216/68747470733a2f2f7472617669732d63692e6f72672f7761646966792f7761646966792d73646b2d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/wadify/wadify-sdk-php)

The **Wadify SDK for PHP** makes it easy for developers to access Wadify in their PHP code.

Resources
---------

[](#resources)

- **README file** – For both getting started and in-depth SDK usage information
- [Issues](https://github.com/wadify/wadify-sdk-php/issues) – Report issues, submit pull requests, and get involved
- [@wadifytech](https://twitter.com/wadifytech) – Follow us on Twitter

Features
--------

[](#features)

- Provides easy-to-use HTTP clients for all supported Wadify services and authentication protocols.
- Is built on Guzzle, and utilizes many of its features, including persistent connections, asynchronous requests, middlewares, etc.

Getting started
---------------

[](#getting-started)

1. **Sign up for Wadify** - Before you begin, you need to sign up for a Wadify account and retrieve your Wadify credentials
2. **Minimum requirements** - To run the SDK, your system will need to meet the minimum requirements, including having PHP &gt;= 5.6 compiled with the cURL extension and cURL 7.16.2+ compiled with a TLS backend (e.g., NSS or OpenSSL).
3. **Install the SDK** – Using Composer is the recommended way to install the Wadify SDK for PHP. The SDK is available via Packagist under the wadify/wadify-sdk-php package.
4. **Using the SDK** – The best way to become familiar with how to use the SDK is to read the following section. The Getting Started Guide will help you become familiar with the basic concepts.

User guide
----------

[](#user-guide)

### Installation

[](#installation)

#### Via composer cli

[](#via-composer-cli)

```
composer require wadify/wadify-sdk-php
```

#### Via composer json

[](#via-composer-json)

```
{
...
	"require": {
		...,
		"wadify/wadify-sdk-php": "^1.0",
	}
}
```

and then

```
composer update
```

### Create a Wadify client

[](#create-a-wadify-client)

#### Example with only required options

[](#example-with-only-required-options)

```
