-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.48 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
47
48
49
50
51
52
{
"name": "open-runtimes/executor",
"description": "Serverless runtimes executor for container based environments ⚡️",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"OpenRuntimes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"lint": "./vendor/bin/pint --test --config pint.json",
"format": "./vendor/bin/pint --config pint.json",
"check": "./vendor/bin/phpstan analyse --level 8 -c phpstan.neon app src tests",
"test": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpunit --configuration phpunit.xml --debug"
]
},
"require": {
"php": ">=8.3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-swoole": "*",
"utopia-php/framework": "0.34.*",
"utopia-php/logger": "0.6.*",
"utopia-php/cli": "0.16.*",
"utopia-php/storage": "0.18.*",
"utopia-php/dsn": "0.1.*",
"utopia-php/registry": "0.5.*",
"utopia-php/preloader": "0.2.*",
"utopia-php/system": "0.9.*",
"utopia-php/orchestration": "0.14.*",
"appwrite/php-runtimes": "0.17.*"
},
"require-dev": {
"swoole/ide-helper": "4.8.5",
"phpunit/phpunit": "^9.3",
"laravel/pint": "1.2.*",
"phpstan/phpstan": "1.8.*"
},
"config": {
"platform": {
"php": "8.3"
}
}
}