-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.02 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.02 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
44
{
"name": "appwrite/protocol-proxy",
"description": "High-performance protocol-agnostic proxy with Swoole for HTTP, TCP, and SMTP",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Appwrite Team",
"email": "team@appwrite.io"
}
],
"require": {
"php": ">=8.2",
"ext-swoole": ">=5.0",
"ext-redis": "*",
"utopia-php/database": "4.*",
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"laravel/pint": "^1.13"
},
"autoload": {
"psr-4": {
"Appwrite\\ProtocolProxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "pint",
"analyse": "phpstan analyse"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}