Skip to content

Commit

Permalink
PHP: upgrade PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Oct 19, 2024
1 parent 38e2e59 commit 3a45994
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions php-8.3/vercel.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"functions": {
"api/index.php": {
"runtime": "vercel-php@0.7.1"
"runtime": "vercel-php@0.7.3"
}
},
"routes": [
{ "src": "/(.*)", "dest": "/api/index.php" }
]
],
"build": {
"env": {
"NOW_PHP_DEBUG": "1"
}
}
}
9 changes: 7 additions & 2 deletions php-exec/vercel.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.7.0"
"runtime": "vercel-php@0.7.3"
}
},
"routes": [
{ "src": "/", "dest": "/api/index.php" },
{ "src": "/(.*)", "dest": "/api/$1.php" }
]
],
"build": {
"env": {
"NOW_PHP_DEBUG": "1"
}
}
}

0 comments on commit 3a45994

Please sign in to comment.