-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
45 lines (45 loc) · 835 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "nicoswd/php-rule-parser",
"type": "library",
"description": "Rule Engine - Rule Parser & Evaluator",
"keywords": [
"rule",
"parser",
"engine",
"tokenizer",
"highlighter",
"evaluator",
"javascript",
"workflow",
"dsl"
],
"homepage": "https://github.com/nicoSWD/php-rule-parser",
"license": "MIT",
"authors": [
{
"name": "Nicolas Oelgart",
"role": "Developer",
"homepage": "https://nicoswd.com"
}
],
"autoload": {
"psr-4": {
"nicoSWD\\Rule\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"nicoSWD\\Rule\\tests\\": "tests"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^9.0",
"mockery/mockery": "^1.0|^1.4"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}