-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.25 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
{
"name": "open-runtimes/proxy",
"description": "Serverless runtimes proxy to split traffic betwen executors ⚡️",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"OpenRuntimes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"lint": "./vendor/bin/pint --preset psr12 --test",
"format": "./vendor/bin/pint --preset psr12",
"check": "./vendor/bin/phpstan analyse --level 8 -c phpstan.neon",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-json": "*",
"ext-swoole": "*",
"utopia-php/framework": "0.34.*",
"utopia-php/registry": "0.6.*",
"utopia-php/cli": "0.13.*",
"utopia-php/logger": "0.6.*",
"utopia-php/balancer": "0.4.*",
"utopia-php/fetch": "^0.1.0",
"utopia-php/dsn": "0.2.1"
},
"require-dev": {
"swoole/ide-helper": "4.8.5",
"phpunit/phpunit": "^9.3",
"laravel/pint": "1.2.*",
"phpstan/phpstan": "1.8.*"
},
"config": {
"platform": {
"php": "8.0"
}
}
}