-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.14 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "kanata-php/socket-conveyor",
"description": "A WebSocket/Socket message Router",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-openswoole": ">=22.0",
"league/pipeline": "^1.0",
"symfony/workflow": "^7.0",
"symfony/event-dispatcher": "^7.0",
"lotharthesavior/hook": "^0.0.1",
"guzzlehttp/guzzle": "^7.8",
"symfony/process": "7.1.7"
},
"require-dev": {
"symfony/var-dumper": "^6.1",
"phpunit/phpunit": "^9.2",
"mockery/mockery": "^1.4",
"openswoole/ide-helper": "^22.0",
"phpro/grumphp": "^2.3",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"kanata-php/conveyor-server-client": "^0.1.0",
"friendsofphp/php-cs-fixer": "^3.41"
},
"autoload": {
"psr-4": {
"Conveyor\\": "src/",
"Tests\\": "tests"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --testsuite All"
]
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}