Skip to content

Commit 98f65f3

Browse files
committed
update ice / phalcon since not compatible (yet) with php 8.4
1 parent d1bff2c commit 98f65f3

File tree

10 files changed

+684
-22
lines changed

10 files changed

+684
-22
lines changed

data.json

Lines changed: 663 additions & 1 deletion
Large diffs are not rendered by default.

data.min.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

javascript/durian.js-fastify/ecosystem.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
apps: [
33
{
44
script: 'dist/main.js',
5-
instances: "max",
5+
instances: 'max',
66
exec_mode: 'cluster',
77
},
88
],

javascript/durian.js/ecosystem.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
apps: [
33
{
44
script: 'dist/main.js',
5-
instances: "max",
5+
instances: 'max',
66
exec_mode: 'cluster',
77
},
88
],

javascript/elysia/app.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { Elysia } from "elysia";
1+
import { Elysia } from 'elysia';
22

33
new Elysia()
4-
.get("/", "")
5-
.get("/user/:id", (req) => req.params.id)
6-
.post("/user", "")
4+
.get('/', '')
5+
.get('/user/:id', (req) => req.params.id)
6+
.post('/user', '')
77
.listen(3000);

javascript/express-bun/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ app.post('/user', (req, res) => {
1515
res.send('');
1616
});
1717

18-
app.listen(3000)
18+
app.listen(3000);

javascript/express-bun/cluster.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import cluster from "node:cluster";
2-
import os from "node:os";
1+
import cluster from 'node:cluster';
2+
import os from 'node:os';
33

44
const cpus = os.availableParallelism();
55

@@ -8,5 +8,5 @@ if (cluster.isPrimary) {
88
cluster.fork();
99
}
1010
} else {
11-
await import("./app.ts");
12-
}
11+
await import('./app.ts');
12+
}

javascript/fastify-bun/cluster.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import cluster from "node:cluster";
2-
import os from "node:os";
1+
import cluster from 'node:cluster';
2+
import os from 'node:os';
33

44
const cpus = os.availableParallelism();
55

@@ -9,5 +9,5 @@ if (cluster.isPrimary) {
99
cluster.fork();
1010
}
1111
} else {
12-
await import("./app.ts");
13-
}
12+
await import('./app.ts');
13+
}

javascript/vixeny-bun/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import root from "./server.ts";
1+
import root from './server.ts';
22

33
Bun.serve({
44
fetch: await root.compose(),

javascript/vixeny-bun/cluster.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import cluster from "node:cluster";
2-
import os from "node:os";
1+
import cluster from 'node:cluster';
2+
import os from 'node:os';
33

44
const cpus = os.availableParallelism();
55

@@ -9,5 +9,5 @@ if (cluster.isPrimary) {
99
cluster.fork();
1010
}
1111
} else {
12-
await import("./app.ts");
13-
}
12+
await import('./app.ts');
13+
}

0 commit comments

Comments
 (0)