-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
83 lines (83 loc) · 2.01 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
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": "phluxor/phluxor",
"description": "A toolkit for flexible actor models in PHP, empowering the PHP ecosystem",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"actor",
"actor-model",
"actor-system",
"actor-toolkit",
"async",
"swoole"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-pdo": "*",
"ext-swoole": "^5.1",
"alb/phpketama": "^0.4.0",
"google/protobuf": "^3.25.4",
"guzzlehttp/promises": "^2.0",
"monolog/monolog": "^3.7.0",
"open-telemetry/opentelemetry": "^1.0.0",
"open-telemetry/context-swoole": "^1.0.1",
"pascaldevink/shortuuid": "^4.0.0",
"php-http/httplug": "^2.4",
"psr/log": "^3.0",
"ramsey/uuid": "^4.7.5",
"symfony/cache": "^7.0",
"symfony/uid": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.11",
"phpstan/phpstan": "^1.11.10",
"squizlabs/php_codesniffer": "^3.10.2",
"slevomat/coding-standard": "^8.15.0",
"swoole/ide-helper": "5.1.3"
},
"suggest": {
"ext-grpc": "to use vitual actor model with grpc",
"ext-protobuf": "serialization with protobuf"
},
"autoload": {
"psr-4": {
"Phluxor\\": "src/Phluxor/"
},
"files": [
"src/Phluxor/ActorSystem/middleware_chain.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/Test"
}
},
"scripts": {
"tests": [
"./vendor/bin/phpunit"
],
"cs": [
"Composer\\Config::disableProcessTimeout",
"phpcs --standard=./phpcs.xml --ignore=*/ProtoBuf/*,*/Metadata/* src tests"
],
"cs-fix": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpcbf --ignore=*/ProtoBuf/*,*/Metadata/* src tests"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}