ebidtech/common-object

A collection of common objects

v0.6 2015-08-05 14:26 UTC

README

Repository to store/share simple objects that can be reuse across projects.

Latest Stable Version Build Status Coverage Status Scrutinizer Quality Score Dependency Status

Requirements

  • PHP >= 5.4

Installation

The recommended way to install is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "ebidtech/common-object": "@stable"
    }
}

Tip: browse ebidtech/common-object page to choose a stable version to use, avoid the @stable meta constraint.

And run these two commands to install it:

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

Now you can add the autoloader, and you will have access to the library:

<?php

require 'vendor/autoload.php';

Usage

For now for usage example look on tests code

Contributing

See CONTRIBUTING file.

Credits

License

Common object library is released under the MIT License. See the bundled LICENSE file for details.