Skip to content

Commit

Permalink
Upgrade to PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Feb 22, 2024
1 parent b487d6d commit d9b61c4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"conf"
],
"dependencies": {
"@libphp/amazon-linux-2-v82": "latest"
"@libphp/amazon-linux-2-v83": "latest"
},
"devDependencies": {
"@types/glob": "8.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import path from 'path';
import { spawn, SpawnOptions } from 'child_process';
import { File, FileFsRef, FileBlob } from '@vercel/build-utils';
import * as libphp from "@libphp/amazon-linux-2-v82";
import * as libphp from "@libphp/amazon-linux-2-v83";

const PHP_PKG = path.dirname(require.resolve('@libphp/amazon-linux-2-v82/package.json'));
const PHP_PKG = path.dirname(require.resolve('@libphp/amazon-linux-2-v83/package.json'));
const PHP_BIN_DIR = path.join(PHP_PKG, "native/php");
const PHP_MODULES_DIR = path.join(PHP_BIN_DIR, "modules");
const PHP_LIB_DIR = path.join(PHP_PKG, "native/lib");
Expand Down

0 comments on commit d9b61c4

Please sign in to comment.