veridu/veridu-php

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.0.0) of this package.

Veridu PHP SDK

1.0.0 2016-06-23 14:08 UTC

README

Build Status Latest Stable Version Total Downloads

Installation

This library can be found on Packagist. The recommended way to install this is through composer.

Edit your composer.json and add:

{
    "require": {
        "veridu/veridu-php": "1.0"
    }
}

And install dependencies:

$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install

Code documentation

Latest code documentation can be found at http://veridu.github.io/veridu-php.

Features

  • PSR-0 compliant for easy interoperability
  • Easier way to access the resources(Session, Appplication, User, Hook, etc)

Examples

Examples of basic usage are located in the samples repository.

Bugs and feature requests

Have a bug or a feature request? Please open a new issue. Before opening any issue, please search for existing issues and read the Issue Guidelines, written by Nicolas Gallagher.

Versioning

This SDK will be maintained under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the following format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major (and resets the minor and patch)
  • New additions without breaking backward compatibility bumps the minor (and resets the patch)
  • Bug fixes and misc changes bumps the patch

For more information on SemVer, please visit http://semver.org/.

Tests

To run the tests, you must install dependencies with composer install --dev.