-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.41 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
{
"name": "jacked-php/jacked-server",
"description": "An OpenSwoole based Server",
"type": "package",
"license": "MIT",
"autoload": {
"psr-4": {
"JackedPhp\\JackedServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-openswoole": "22.*",
"ext-pcntl": "*",
"ext-curl": "*",
"adoy/fastcgi-client": "^1.0",
"guzzlehttp/guzzle": "^7.7",
"kanata-php/socket-conveyor": "^2.2",
"textalk/websocket": "^1.5",
"lotharthesavior/hook": "^0.0.1",
"kanata-php/conveyor-server-client": "^0.1",
"symfony/console": "^7.0",
"nesbot/carbon": "^2.72",
"vlucas/phpdotenv": "^5.6",
"monolog/monolog": "^3.7",
"symfony/event-dispatcher": "^7.1",
"openswoole/core": "^22.1",
"dshafik/bag": "^1.0",
"jacked-php/lite-connect": "^0.0",
"firebase/php-jwt": "^6.10"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"openswoole/ide-helper": "^22.0",
"phpro/grumphp": "*",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}