jakubciszak / rule-engine
A PHP rule engine with array, RPN and Symfony ExpressionLanguage APIs.
Requires
- php: ^8.4
Requires (Dev)
- phpstan/phpstan: *
- phpunit/phpunit: ^11.4
This package is auto-updated.
Last update: 2026-08-07 20:58:31 UTC
README
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 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 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
The library implements the Rule Archetype Pattern from the book "Enterprise Patterns and MDA: Building Better Software with Archetype Patterns and UML" 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
- PHP 8.4.1 or higher
- Composer
Installation
To install the library, use Composer:
composer require jakubciszak/rule-engine
Usage
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 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' => 'temp'], 110]], ['==' => [['var' => 'pie.filling'], 'apple']], ]]; $data = ['temp' => 100, 'pie' => ['filling' => 'apple']]; $result = NestedRuleApi::evaluate($rules, $data); $result->result; // true
You can also pass a set of named rules for evaluation:
$ruleset = [ 'rule1' => ['==' => [['var' => 'a'], 1]], 'rule2' => ['>' => [['var' => 'b'], 2]], ]; $data = ['a' => 1, 'b' => 3]; NestedRuleApi::evaluate($ruleset, $data)->result; // true
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 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 <= 10) and not (.f != 7))) and (.g is true or .h is false)'; $data = [ 'a' => 2, 'b' => 2, 'c' => 2, 'd' => 5, 'e' => 10, 'f' => 7, 'g' => true, 'h' => true, ]; $result = StringRuleApi::evaluate($complex, $data); $result->result; // true
StringRuleApi can evaluate a set of named expressions as a ruleset, returning an EvaluationResult with a single boolean result:
$rules = [ 'adult' => '.actualAge > 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
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
{
"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
$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?
Pure PHP library usage gives most flexible and powerful solutions
Notation
This implementation use Reverse Polish Notation (RPN).
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
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
To evaluate a rule, you need to provide a RuleContext:
use JakubCiszak\RuleEngine\RuleContext; $context = new RuleContext(); $result = $rule->evaluate($context);
Development
Running Tests
To run the tests, use PHPUnit:
vendor/bin/phpunit
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
License
This project is licensed under the MIT License.
Authors
- Jakub Ciszak - j.ciszak@gmail.com
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.