-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.89 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.89 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dtyq/flow-expr-engine",
"description": "A powerful engine for handling flow components and expressions.",
"license": "Apache License 2.0",
"authors": [
{
"name": "lihq1403",
"email": "lihqing1403@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"dtyq/sdk-base": "~0.1",
"guzzlehttp/guzzle": "^6.0|^7.0",
"ext-openssl": "*",
"ext-curl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"dtyq/rule-engine-core": "~0.0",
"hyperf/di":"*",
"hyperf/config":"*",
"hyperf/engine-swow":"*",
"hyperf/framework":"*",
"hyperf/laminas-mime": "^3.0",
"hyperf/http-server":"*",
"phpstan/phpstan": "^1.0"
},
"suggest": {
"dtyq/rule-engine-core": "~0.0"
},
"autoload": {
"psr-4": {
"Dtyq\\FlowExprEngine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dtyq\\FlowExprEngine\\Test\\": "tests/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1",
"test": "./vendor/bin/phpunit",
"analyse": "@php vendor/bin/phpstan analyse --memory-limit 512M -l 0 -c phpstan.neon ./src ./tests"
},
"repositories": [
{
"type": "github",
"url": "https://github.com/dtyq/rule-engine-core.git"
},
{
"type": "github",
"url": "https://github.com/dtyq/sandbox.git"
},
{
"type": "github",
"url": "https://github.com/dtyq/sdk-base.git"
}
],
"extra": {
"hyperf": {
"config": "Dtyq\\FlowExprEngine\\Hyperf\\ConfigProvider"
},
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}