nicmart/benchmark

A framework for benchmarking php code.

v0.1.1 2014-05-18 11:36 UTC

This package is auto-updated.

Last update: 2024-04-23 15:30:27 UTC


README

Build Status Coverage Status Scrutinizer Quality Score

A framework for benchmarking php code.

In early stage of development. Stay tuned.

Install

The best way to install FixedSizeEngine is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "nicmart/benchmark": "dev-master"
    }
}

Then you can run these two commands to install it:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install

or simply run composer install if you have have already installed the composer globally.

Then you can include the autoloader, and you will have access to the library classes:

<?php
require 'vendor/autoload.php';