Skip to content

Commit 768b0f5

Browse files
Merge pull request #22 from open-runtimes/feat-v3-support
Feat: v3 support
2 parents 5c7fba6 + 31a7530 commit 768b0f5

28 files changed

Lines changed: 789 additions & 416 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
OPR_EXECUTOR_ENV=development
2-
OPR_EXECUTOR_RUNTIMES=php-8.1,dart-2.17,deno-1.24,node-18.0,python-3.9,ruby-3.1,cpp-17
2+
OPR_EXECUTOR_RUNTIMES=php-8.1,dart-2.18,deno-1.24,node-18.0,python-3.10,ruby-3.1,cpp-17,dotnet-6.0
33
OPR_EXECUTOR_CONNECTION_STORAGE=file://localhost
44
OPR_EXECUTOR_INACTIVE_TRESHOLD=60
55
OPR_EXECUTOR_MAINTENANCE_INTERVAL=60

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ version: '3'
3434
services:
3535
openruntimes-executor:
3636
container_name: openruntimes-executor
37-
hostname: exc1
37+
hostname: executor
3838
stop_signal: SIGINT
3939
image: openruntimes/executor
4040
networks:

app/http.php

Lines changed: 334 additions & 103 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@
2424
"ext-curl": "*",
2525
"ext-json": "*",
2626
"ext-swoole": "*",
27-
"utopia-php/framework": "0.25.*",
28-
"utopia-php/swoole": "0.7.*",
29-
"utopia-php/pools": "0.3.*",
27+
"utopia-php/framework": "dev-fix-coroutine-style-two as 0.30.0",
28+
"utopia-php/swoole": "0.5.*",
29+
"utopia-php/pools": "0.4.*",
3030
"utopia-php/logger": "0.3.*",
31-
"utopia-php/cli": "0.14.*",
32-
"utopia-php/storage": "0.13.*",
31+
"utopia-php/cli": "0.16.*",
32+
"utopia-php/storage": "0.15.*",
3333
"utopia-php/dsn": "0.1.*",
3434
"utopia-php/registry": "0.5.*",
3535
"utopia-php/preloader": "0.2.*",
36-
"utopia-php/system": "0.6.*",
37-
"utopia-php/orchestration": "0.9.*",
38-
"appwrite/php-runtimes": "0.11.*"
36+
"utopia-php/system": "0.7.*",
37+
"utopia-php/orchestration": "0.10.*",
38+
"appwrite/php-runtimes": "0.12.*"
3939
},
4040
"require-dev": {
4141
"swoole/ide-helper": "4.8.5",

0 commit comments

Comments
 (0)