Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicmart/Rulez
A blazing fast rules engine for PHP
https://github.com/nicmart/Rulez
Last synced: about 1 month ago
JSON representation
A blazing fast rules engine for PHP
- Host: GitHub
- URL: https://github.com/nicmart/Rulez
- Owner: nicmart
- License: mit
- Created: 2014-05-11T13:20:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-23T07:10:43.000Z (over 10 years ago)
- Last Synced: 2024-08-02T05:22:48.651Z (4 months ago)
- Language: PHP
- Size: 320 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blazingly-fast - Rulez - A blazing fast rules engine for PHP (PHP)
README
# Rulez
[![Build Status](https://travis-ci.org/nicmart/Rulez.png?branch=master)](https://travis-ci.org/nicmart/Rulez)
[![Coverage Status](https://coveralls.io/repos/nicmart/Rulez/badge.png?branch=master)](https://coveralls.io/r/nicmart/Rulez?branch=master)
[![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/nicmart/Rulez/badges/quality-score.png?s=e06818508807c109a8c9354a73fc1a5227426c09)](https://scrutinizer-ci.com/g/nicmart/StringTemplate/)A blazing fast rules engine for PHP.
## Install
The best way to install Rulez is [through composer](http://getcomposer.org).
Just create a composer.json file for your project:
```JSON
{
"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 installor simply run `composer install` if you have have already [installed the composer globally](http://getcomposer.org/doc/00-intro.md#globally).
Then you can include the autoloader, and you will have access to the library classes:
```php