-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"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 --testsuite=unit",
"test:e2e": "./vendor/bin/phpunit --configuration phpunit.xml --testsuite=e2e",
"refactor": "./vendor/bin/rector",
"refactor:check": "./vendor/bin/rector --dry-run"
},
"require": {
"php": ">=8.5.0",
"ext-curl": "*",
"ext-json": "*",
"ext-swoole": "*",
"utopia-php/config": "^0.2.2",
"utopia-php/console": "^0.1.1",
"utopia-php/di": "0.3.*",
"utopia-php/dsn": "0.2.*",
"utopia-php/http": "2.0.0-rc5@RC",
"utopia-php/orchestration": "^0.19.2",
"utopia-php/storage": "^2.0",
"utopia-php/system": "0.10.*"
},
"require-dev": {
"laravel/pint": "1.*",
"utopia-php/fetch": "^1.1.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13.1",
"rector/rector": "^2.4",
"swoole/ide-helper": "^6.0"
},
"config": {
"platform": {
"php": "8.5"
},
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
},
"process-timeout": 0
}
}