-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.02 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.02 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hyperf-plus/actor",
"type": "library",
"description": "HPlus Actor模型组件 - 高性能、多进程、高稳定性的Actor系统,专为游戏场景优化",
"keywords": [
"php",
"hyperf",
"hyperf-plus",
"actor",
"game",
"concurrency",
"multiprocess"
],
"license": "MIT",
"authors": [
{
"name": "毛自豪",
"email": "4213509@qq.com"
}
],
"homepage": "https://github.com/lphkxd/hyperf-plus",
"support": {
"issues": "https://github.com/lphkxd/hyperf-plus/issues",
"source": "https://github.com/lphkxd/hyperf-plus/tree/main/actor"
},
"require": {
"php": ">=8.1",
"hyperf/config": "^3.1",
"hyperf/di": "^3.1.0",
"hyperf/framework": "^3.1.0",
"hyperf/process": "^3.1.0",
"hyperf/memory": "^3.1.0",
"hyperf/redis": "^3.1.0",
"hyperf/coroutine": "^3.1.0",
"ext-swoole": "*",
"ext-redis": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"hyperf/metric": "For actor performance monitoring",
"hyperf/logger": "For actor system logging"
},
"autoload": {
"psr-4": {
"HPlus\\Actor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HPlus\\Actor\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-unit": "phpunit --colors=always tests/Unit",
"test-feature": "phpunit --colors=always tests/Feature",
"test-coverage": "phpunit --coverage-html coverage --coverage-text",
"test-performance": "phpunit --colors=always --group performance",
"analyse": "phpstan analyse src --level 8",
"cs-fix": "php-cs-fixer fix src",
"quality": [
"@test",
"@analyse",
"@cs-fix"
]
},
"extra": {
"hyperf": {
"config": "HPlus\\Actor\\ConfigProvider"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}