Skip to content

Commit

Permalink
[0.6.x] bump 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Apr 16, 2024
1 parent 38713b0 commit 5b5ec4c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 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.6.1"
"runtime": "vercel-php@0.6.2"
}
}
}
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.6.1` - Node 18.x / PHP 8.2.x (https://example-php-8-2.vercel.app)
- `vercel-php@0.6.2` - Node 18.x / PHP 8.2.x (https://example-php-8-2.vercel.app)
- `vercel-php@0.5.4` - Node 18.x / PHP 8.1.x (https://example-php-8-1.vercel.app)
- `vercel-php@0.4.3` - Node 18.x / PHP 8.0.x (https://example-php-8-0.vercel.app)
- `vercel-php@0.3.5` - Node 18.x / PHP 7.4.x (https://example-php-7-4.vercel.app)
Expand All @@ -106,7 +106,7 @@ If you need to route everything to index, use `routes` property.
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
}
},
"routes": [
Expand Down Expand Up @@ -181,19 +181,19 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
},
// Can be list also directly
"api/index.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
},
"api/users.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
},
"api/books.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
}
}
}
Expand All @@ -208,7 +208,7 @@ project
{
"functions": {
"api/index.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
}
},
"routes": [
Expand All @@ -228,7 +228,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.6.1",
"runtime": "vercel-php@0.6.2",
"memory": 3008,
"maxDuration": 60
}
Expand All @@ -255,7 +255,7 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
}
}
}
Expand Down Expand Up @@ -294,7 +294,7 @@ project
{
"functions": {
"api/*.php": {
"runtime": "vercel-php@0.6.1"
"runtime": "vercel-php@0.6.2"
}
}
}
Expand All @@ -319,7 +319,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
{
"functions": {
"api/**/*.php": {
"runtime": "vercel-php@0.6.1",
"runtime": "vercel-php@0.6.2",
"excludeFiles": "{foo/**,bar/config/*.yaml}",
}
}
Expand Down
4 changes: 2 additions & 2 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
@@ -1,7 +1,7 @@
{
"name": "vercel-php",
"description": "Vercel PHP runtime",
"version": "0.6.1",
"version": "0.6.2",
"license": "MIT",
"main": "./dist/index.js",
"homepage": "https://github.com/juicyfx/vercel-php",
Expand Down

0 comments on commit 5b5ec4c

Please sign in to comment.