https://github.com/nicmart/Rulez
A blazing fast rules engine for PHP
https://github.com/nicmart/Rulez
Last synced: 14 days 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-06-23T07:10:43.000Z (almost 11 years ago)
- Last Synced: 2024-08-02T05:22:48.651Z (9 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
[](https://travis-ci.org/nicmart/Rulez)
[](https://coveralls.io/r/nicmart/Rulez?branch=master)
[](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