Skip to content

Commit

Permalink
[0.5.x] bump 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Apr 16, 2024
1 parent 3105c76 commit 2d0297c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Second file `vercel.json` is pure gold here. Setup your project with configurati
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
}
}
Expand Down Expand Up @@ -90,7 +90,7 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
## 💯 Versions

- `vercel-php@0.5.3` - PHP 8.1.x
- `vercel-php@0.5.5` - PHP 8.1.x
- `vercel-php@0.4.1` - PHP 8.0.x
- `vercel-php@0.3.3` - PHP 7.4.x

Expand All @@ -105,7 +105,7 @@ If you need to route everything to index, use `routes` property.
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
},
"routes": [
Expand Down Expand Up @@ -180,19 +180,19 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
},
// Can be list also directly
"api/index.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
},
"api/users.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
},
"api/books.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
}
}
Expand All @@ -207,7 +207,7 @@ project
{
"functions": {
"api/index.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
},
"routes": [
Expand All @@ -227,7 +227,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3",
"runtime": "vercel-php@0.5.5",
"memory": 3008,
"maxDuration": 60
}
Expand All @@ -254,7 +254,7 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
}
}
Expand Down Expand Up @@ -293,7 +293,7 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.5.3"
"runtime": "vercel-php@0.5.5"
}
}
}
Expand All @@ -318,7 +318,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
{
"functions": {
"api/**/*.php": {
"runtime": "vercel-php@0.5.3",
"runtime": "vercel-php@0.5.5",
"excludeFiles": "{foo/**,bar/config/*.yaml}",
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vercel-php",
"description": "Vercel PHP runtime",
"version": "0.5.4",
"version": "0.5.5",
"license": "MIT",
"main": "./dist/index.js",
"homepage": "https://github.com/juicyfx/vercel-php",
Expand Down

0 comments on commit 2d0297c

Please sign in to comment.