-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.47 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "utopia-php/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.4",
"ext-redis": "*",
"ext-swoole": ">=6.0",
"utopia-php/console": "*",
"utopia-php/validators": "*"
},
"require-dev": {
"phpunit/phpunit": "12.*",
"phpstan/phpstan": "*",
"laravel/pint": "*"
},
"autoload": {
"psr-4": {
"Utopia\\Proxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/"
}
},
"scripts": {
"bench:http": "php benchmarks/http.php",
"bench:tcp": "php benchmarks/tcp.php",
"test": "phpunit --testsuite Unit",
"test:integration": "phpunit --testsuite Integration",
"test:all": "phpunit",
"lint": "pint --test --config=pint.json",
"format": "pint --config=pint.json",
"check": "phpstan analyse --level=max --memory-limit=2G src tests"
},
"config": {
"php": "8.4",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}