-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.65 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
{
"name": "phluxor/phluxor-remote",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"actor",
"actor-model",
"actor-system",
"actor-toolkit",
"async",
"swoole"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"description": "remoting library for phluxor / actor model",
"require": {
"php": "^8.3",
"ext-swoole": "*",
"google/protobuf": "^v3.25.5",
"phluxor/phluxor": "^0.2.2",
"phluxor/phluxor-websocket": "^0.2.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5.11",
"phpstan/phpstan": "^1.10.67",
"swoole/ide-helper": "^5.0.0",
"squizlabs/php_codesniffer": "^3.10.1",
"slevomat/coding-standard": "^8.15.0"
},
"suggest": {
"ext-opentelemetry": "Automatic instrumentation with PHP requires at least PHP 8.0",
"ext-protobuf": "serialization with protobuf"
},
"autoload": {
"psr-4": {
"Phluxor\\Remote\\": "src/Phluxor/Remote"
}
},
"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
}
}
}