-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.13 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
{
"name": "cloudtay/ripple",
"license": "MIT",
"autoload": {
"psr-4": {
"Ripple\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "cclilshy",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-sockets": "*",
"ext-openssl": "*",
"psr/http-message": "*",
"revolt/event-loop": "^1.0"
},
"require-dev": {
"ext-posix": "*",
"ext-pcntl": "*",
"ext-curl": "*",
"ext-parallel": "*",
"ext-zlib": "*",
"phpunit/phpunit": "*",
"friendsofphp/php-cs-fixer": "*"
},
"suggest": {
"ext-posix": "For better signal handling",
"ext-pcntl": "For better signal handling",
"ext-curl": "For better http client",
"ext-parallel": "For better parallel processing",
"ext-zlib": "For better compression",
"cloudtay/ripple-http": "For better http client",
"cloudtay/ripple-websocket": "For better websocket client",
"cloudtay/ripple-rdo": "For better mysql client"
},
"minimum-stability": "dev",
"prefer-stable": true
}