-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
54 lines (54 loc) · 1.36 KB
/
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
46
47
48
49
50
51
52
53
54
{
"name": "uuf6429/rune",
"type": "library",
"description": "PHP Rule Engine.",
"keywords": [
"business",
"rule",
"engine",
"expression",
"uuf6429"
],
"homepage": "https://github.com/uuf6429/rune",
"license": "MIT",
"authors": [
{
"name": "Christian Sciberras",
"homepage": "https://christian.sciberras.me"
}
],
"scripts": {
"php-cs-fixer-check": "php-cs-fixer check --diff",
"php-cs-fixer-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyze src test",
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"phpunit --coverage-clover coverage.xml"
]
},
"require": {
"php": "^7.4 || ^8",
"symfony/expression-language": "^4 || ^5 || ^6",
"phpdocumentor/reflection-docblock": "^5.3"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^6 || ^9",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1.10",
"jetbrains/phpstorm-attributes": "^1.0"
},
"autoload": {
"psr-4": {
"uuf6429\\Rune\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"uuf6429\\Rune\\": [
"test/unit/",
"test/integration/"
]
}
}
}