-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.64 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.64 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
56
{
"name": "open-runtimes/executor",
"description": "Serverless runtimes executor for container based environments ⚡️",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"OpenRuntimes\\": "src/",
"Tests\\E2E\\": "tests/e2e",
"Tests\\Unit\\": "tests/unit"
}
},
"scripts": {
"format": "./vendor/bin/pint --config pint.json",
"format:check": "./vendor/bin/pint --test --config pint.json",
"analyze": "./vendor/bin/phpstan analyse --memory-limit=1G -c phpstan.neon app src tests",
"test:unit": "./vendor/bin/phpunit --configuration phpunit.xml --debug --testsuite=unit",
"test:e2e": "./vendor/bin/phpunit --configuration phpunit.xml --debug --testsuite=e2e",
"refactor": "./vendor/bin/rector",
"refactor:check": "./vendor/bin/rector --dry-run"
},
"require": {
"php": ">=8.3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-swoole": "*",
"utopia-php/config": "^0.2.2",
"utopia-php/console": "0.0.*",
"utopia-php/di": "0.3.*",
"utopia-php/dsn": "0.2.*",
"utopia-php/fetch": "0.5.*",
"utopia-php/framework": "0.34.*",
"utopia-php/orchestration": "0.19.*",
"utopia-php/preloader": "0.2.*",
"utopia-php/registry": "0.5.*",
"utopia-php/storage": "0.18.*",
"utopia-php/system": "0.10.*"
},
"require-dev": {
"laravel/pint": "1.*",
"phpstan/phpstan": "2.*",
"phpunit/phpunit": "9.*",
"rector/rector": "2.3.8",
"swoole/ide-helper": "5.1.2"
},
"config": {
"platform": {
"php": "8.3"
},
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
},
"process-timeout": 0
}
}