PHPackages                             jakubciszak/rule-engine - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jakubciszak/rule-engine

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jakubciszak/rule-engine
=======================

A PHP rule engine with array, RPN and Symfony ExpressionLanguage APIs.

1.3.0(10mo ago)3101MITPHPPHP ^8.4CI passing

Since Oct 9Pushed 1w ago1 watchersCompare

[ Source](https://github.com/jakubciszak/rule-engine)[ Packagist](https://packagist.org/packages/jakubciszak/rule-engine)[ RSS](/packages/jakubciszak-rule-engine/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (9)Dependencies (2)Versions (38)Used By (0)

Rule Engine
===========

[](#rule-engine)

Rule Engine lets you express business logic in plain PHP arrays and evaluate it with ease. Pick the API that matches the shape of your data:

- **FlatRuleAPI** – send a linear array in [Reverse Polish Notation](https://en.wikipedia.org/wiki/Reverse_Polish_notation) for fast stack-based evaluation.
- **NestedRuleApi** – describe rules as nested associative arrays that read like infix notation.
- **ExpressionRuleApi** – evaluate human-readable expressions using the maintained [Symfony ExpressionLanguage](https://symfony.com/doc/current/components/expression_language.html) parser.
- **StringRuleApi** – legacy text expression API, deprecated in favor of `ExpressionRuleApi`.

`FlatRuleAPI` and `NestedRuleApi` accept arrays decoded from JSON and can work with callables inside the evaluation context. `ExpressionRuleApi` accepts scalar and array data and intentionally rejects objects and callables.

How it works
------------

[](#how-it-works)

The library implements the **Rule Archetype Pattern** from the book ["Enterprise Patterns and MDA: Building Better Software with Archetype Patterns and UML"](https://amzn.eu/d/arcbwKu) by Jim Arlow and Ila Neustadt. Rules are composed of propositions, operators and optional actions. Depending on whether you use `FlatRuleAPI` or `NestedRuleApi`, the rule is converted to a uniform internal structure that the engine evaluates against the provided context.

Requirements
------------

[](#requirements)

- PHP 8.4.1 or higher
- Composer

Installation
------------

[](#installation)

To install the library, use Composer:

```
composer require jakubciszak/rule-engine
```

Usage
-----

[](#usage)

### FlatRuleAPI

[](#flatruleapi)

Rules can also be defined using JSON in RPN order. The example below presents two rules:

```
{
  "rules": [
    {
      "name": "rule1",
      "elements": [
        {"type": "variable", "name": "a"},
        {"type": "variable", "name": "b"},
        {"type": "operator", "name": "=="}
      ]
    },
    {
      "name": "rule2",
      "elements": [
        {"type": "variable", "name": "amount"},
        {"type": "variable", "name": "max"},
        {"type": "operator", "name": ">"}
      ]
    }
  ]
}
```

This JSON can be decoded and passed to `FlatRuleAPI`. Evaluation returns an `EvaluationResult`object with the boolean outcome and the updated context.

```
$rules = json_decode('{"rules": [...]}', true, 512, JSON_THROW_ON_ERROR);
$context = json_decode('{"a":1,"b":2}', true, 512, JSON_THROW_ON_ERROR);
$result = FlatRuleAPI::evaluate($rules, $context);

$result->result; // bool
$result->context; // updated context array
```

### NestedRuleApi

[](#nestedruleapi)

`NestedRuleApi` accepts rules defined using a JSON structure that resembles infix notation. Operators are written as keys and their arguments are provided in nested arrays.

```
use JakubCiszak\RuleEngine\Api\NestedRuleApi;

$rules = ['and' => [
    ['' => [['var' => 'b'], 2]],
];

$data = ['a' => 1, 'b' => 3];

NestedRuleApi::evaluate($ruleset, $data)->result; // true
```

### ExpressionRuleApi

[](#expressionruleapi)

`ExpressionRuleApi` uses native Symfony ExpressionLanguage syntax. Variables are passed as top-level context values, strings must be quoted and strict comparison is available through `===` and `!==`.

```
use JakubCiszak\RuleEngine\Api\ExpressionRuleApi;

$expression = '(actualAge > 18 or name === "Adam") or (citizenship === "PL" and actualAge > 15)';
$data = ['actualAge' => 16, 'name' => 'John', 'citizenship' => 'PL'];

$result = ExpressionRuleApi::evaluate($expression, $data);
$result->result; // true
```

Nested arrays use bracket access:

```
$expression = 'customer["address"]["country"] === "PL" and customer["role"] in ["admin", "owner"]';
$data = [
    'customer' => [
        'address' => ['country' => 'PL'],
        'role' => 'admin',
    ],
];

ExpressionRuleApi::evaluate($expression, $data)->result; // true
```

A set of named expressions is evaluated completely and succeeds only when every expression returns `true`:

```
$rules = [
    'adult' => 'actualAge >= 18',
    'plCitizen' => 'citizenship === "PL"',
];
$data = ['actualAge' => 20, 'citizenship' => 'PL'];

ExpressionRuleApi::evaluate($rules, $data)->result; // true
```

Actions use the existing rule action syntax. They are parsed before evaluation and executed once only when the complete expression or named ruleset returns `true`. Updated context is available on the returned `EvaluationResult`:

```
$data = [
    'actualAge' => 20,
    'status' => 'pending',
    'score' => 0,
];

$result = ExpressionRuleApi::evaluate(
    expression: 'actualAge >= 18',
    data: $data,
    actions: [
        '.status = approved',
        '.score + 10',
    ],
);

$result->result; // true
$result->context['status']; // approved
$result->context['score']; // 10
```

Expressions can be checked before they are stored or executed:

```
ExpressionRuleApi::lint('actualAge >= 18', ['actualAge' => 20]);
```

The default rule language exposes no PHP functions, including `constant()` and `enum()`, and exposed context values can contain only scalar values, `null` and arrays. Top-level keys that are not valid expression identifiers are ignored; wrap data under a valid key and use bracket access when arbitrary keys are needed. Applications can pass a custom `RuleExpressionLanguage` instance with explicitly allowed expression providers as the third argument.

### StringRuleApi usage (deprecated)

[](#stringruleapi-usage-deprecated)

`StringRuleApi` is retained for backward compatibility. New integrations should use `ExpressionRuleApi`. Its legacy syntax denotes variables with a leading dot and resolves them from the supplied data array.

```
use JakubCiszak\RuleEngine\Api\StringRuleApi;

$expr = '(.actualAge > 18 or .name is Adam) or (.citizenship is PL and .actualAge > 15)';
$data = ['actualAge' => 16, 'name' => 'John', 'citizenship' => 'PL'];

$result = StringRuleApi::evaluate($expr, $data);
$result->result; // true
```

Complex nested conditions are also supported:

```
$complex = '((.a > 1 and (.b < 3 or .c is 2)) or ((.d >= 5 and .e  18',
    'plCitizen' => '.citizenship is PL',
];
$data = ['actualAge' => 16, 'citizenship' => 'PL'];

$result = StringRuleApi::evaluate($rules, $data);
$result->result; // false
```

Boolean variables can be referenced directly without explicit comparison and negated using `not`:

```
$flags = '.g and not .h';
$data = ['g' => true, 'h' => false];

StringRuleApi::evaluate($flags, $data)->result; // true
```

### Rule actions

[](#rule-actions)

Each rule may include simple actions executed when the rule is evaluated. Actions are expressed as strings:

```
".count + 5"
".name = John"
".total + .amount"

```

Supported operators are `+` (addition), `-` (subtraction), `.` (concatenation) and `=` (assignment). Values starting with `.` reference variables from the evaluation context.

When using `NestedRuleApi`, specify actions under the `actions` key alongside the rule expression or within each rule of a ruleset. `ExpressionRuleApi` accepts them through its named `actions` argument, as shown above.

#### FlatRuleAPI example

[](#flatruleapi-example)

```
{
  "rules": [
    {
      "name": "rule1",
      "elements": [
        {"type": "variable", "name": "a"},
        {"type": "variable", "name": "b"},
        {"type": "operator", "name": "=="}
      ],
       "actions": [".count + 1"]
    }
  ]
}
```

Evaluating the JSON above with `{ "a": 1, "b": 1, "count": 0 }` updates `count` to `1` when the rule evaluates to `true`.

```
$rules = json_decode($json, true, 512, JSON_THROW_ON_ERROR); // $json contains JSON above
$context = ['a' => 1, 'b' => 1, 'count' => 0];
FlatRuleAPI::evaluate($rules, $context);
// $context['count'] === 1
```

#### NestedRuleApi example

[](#nestedruleapi-example)

```
$ruleset = [
    'rule1' => [
        '==' => [['var' => 'a'], 1],
        'actions' => ['.count + 1'],
    ],
    'rule2' => [
        '==' => [['var' => 'count'], 1],
    ],
];

$data = ['a' => 1, 'count' => 0];

NestedRuleApi::evaluate($ruleset, $data); // true
// $data['count'] === 1
```

What is behind?
---------------

[](#what-is-behind)

### Pure PHP library usage gives most flexible and powerful solutions

[](#pure-php-library-usage-gives-most-flexible-and-powerful-solutions)

### Notation

[](#notation)

This implementation use [Reverse Polish Notation (RPN)](https://en.wikipedia.org/wiki/Reverse_Polish_notation).
**RPN** is a mathematical notation in which operators follow their operands. This notation eliminates the need for parentheses that are used in standard infix notation, making the evaluation of expressions simpler and more efficient.

For example, the expression
`(2 + 3) * 5`
in standard notation would be written as
`2 3 + 5 *` in RPN.

In this notation, you first add 2 and 3 to get 5, and then multiply by 5 to get 25.

The Rule Engine uses RPN to simplify the process of building conditions, making it more intuitive to construct complex logical expressions.

### Creating Rules

[](#creating-rules)

You can create rules using the provided methods for different operators:

```
use JakubCiszak\RuleEngine\Rule;
use JakubCiszak\RuleEngine\Operator;

$rule = (new Rule())
    ->variable('expectedAge', 22)
    ->variable('age')
    ->greaterThan()
    ->evaluate($context);
```

### Evaluating Rules

[](#evaluating-rules)

To evaluate a rule, you need to provide a `RuleContext`:

```
use JakubCiszak\RuleEngine\RuleContext;

$context = new RuleContext();
$result = $rule->evaluate($context);
```

---

Development
-----------

[](#development)

### Running Tests

[](#running-tests)

To run the tests, use PHPUnit:

```
vendor/bin/phpunit
```

Contributing
------------

[](#contributing)

Contributions are welcome! Please open an issue or submit a pull request.

License
-------

[](#license)

This project is licensed under the MIT License.

Authors
-------

[](#authors)

- Jakub Ciszak -

Additional Information
----------------------

[](#additional-information)

- The project uses native PHP arrays for optimal performance and simplicity.
- The source code is located in the `src/` directory.
- Tests are located in the `tests/` directory.

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance78

Regular maintenance activity

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 73.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~43 days

Recently: every ~13 days

Total

9

Last Release

329d ago

Major Versions

0.1.1 → 1.0.02025-07-31

PHP version history (2 changes)0.1.0PHP ^8.3

1.0.0PHP ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/235452bbfa7fbe11c5572ac2bd34bca151d3597d81cdb8740c94e74b6b9c7d68?d=identicon)[itdomino](/maintainers/itdomino)

---

Top Contributors

[![jakubciszak](https://avatars.githubusercontent.com/u/30110635?v=4)](https://github.com/jakubciszak "jakubciszak (75 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (27 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/jakubciszak-rule-engine/health.svg)

```
[![Health](https://phpackages.com/badges/jakubciszak-rule-engine/health.svg)](https://phpackages.com/packages/jakubciszak-rule-engine)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
