Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.1 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.1 KB

Rulez

Build Status Coverage Status Scrutinizer Quality Score

A blazing fast rules engine for PHP.

Install

The best way to install Rulez is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "nicmart/rulez": "~0.1"
    }
}

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';