Skip to content

Commit 7bb6589

Browse files
author
Kenneth Ocastro
committed
Initial commit
0 parents  commit 7bb6589

File tree

9 files changed

+2339
-0
lines changed

9 files changed

+2339
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "kennyth01/php-rules-engine",
3+
"description": "A PHP rules engine inspired by CacheControl/json-rules-engine, enabling dynamic rule evaluation based on conditions and facts.",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Kennyth01\\PhpRulesEngine\\": "src/"
9+
}
10+
},
11+
"authors": [
12+
{
13+
"name": "Kenneth Ocastro"
14+
}
15+
],
16+
"minimum-stability": "stable",
17+
"require-dev": {
18+
"phpunit/phpunit": "^11.4"
19+
}
20+
}

0 commit comments

Comments
 (0)