Skip to content

Commit 49df28d

Browse files
committed
Versions: update
1 parent 51aa91b commit 49df28d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Second file `vercel.json` is pure gold here. Setup your project with configurati
5454
{
5555
"functions": {
5656
"api/*.php": {
57-
"runtime": "[email protected].0"
57+
"runtime": "[email protected].1"
5858
}
5959
}
6060
}
@@ -90,10 +90,10 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
9090
9191
## 💯 Versions
9292

93-
- `[email protected].0` - PHP 8.2.x (https://example-php-8-2.vercel.app)
94-
- `[email protected].3` - PHP 8.1.x (https://example-php-8-1.vercel.app)
95-
- `[email protected].1` - PHP 8.0.x (https://example-php-8-0.vercel.app)
96-
- `[email protected].3` - PHP 7.4.x (https://example-php-7-4.vercel.app)
93+
- `[email protected].1` - Node 18.x / PHP 8.2.x (https://example-php-8-2.vercel.app)
94+
- `[email protected].4` - Node 18.x / PHP 8.1.x (https://example-php-8-1.vercel.app)
95+
- `[email protected].3` - Node 18.x / PHP 8.0.x (https://example-php-8-0.vercel.app)
96+
- `[email protected].5` - Node 18.x / PHP 7.4.x (https://example-php-7-4.vercel.app)
9797

9898
## ⚙️ Usage
9999

@@ -106,7 +106,7 @@ If you need to route everything to index, use `routes` property.
106106
{
107107
"functions": {
108108
"api/*.php": {
109-
"runtime": "[email protected].0"
109+
"runtime": "[email protected].1"
110110
}
111111
},
112112
"routes": [
@@ -181,19 +181,19 @@ project
181181
{
182182
"functions": {
183183
"api/*.php": {
184-
"runtime": "[email protected].0"
184+
"runtime": "[email protected].1"
185185
},
186186
187187
// Can be list also directly
188188
189189
"api/index.php": {
190-
"runtime": "[email protected].0"
190+
"runtime": "[email protected].1"
191191
},
192192
"api/users.php": {
193-
"runtime": "[email protected].0"
193+
"runtime": "[email protected].1"
194194
},
195195
"api/books.php": {
196-
"runtime": "[email protected].0"
196+
"runtime": "[email protected].1"
197197
}
198198
}
199199
}
@@ -208,7 +208,7 @@ project
208208
{
209209
"functions": {
210210
"api/index.php": {
211-
"runtime": "[email protected].0"
211+
"runtime": "[email protected].1"
212212
}
213213
},
214214
"routes": [
@@ -228,7 +228,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
228228
{
229229
"functions": {
230230
"api/*.php": {
231-
"runtime": "[email protected].0",
231+
"runtime": "[email protected].1",
232232
"memory": 3008,
233233
"maxDuration": 60
234234
}
@@ -255,7 +255,7 @@ project
255255
{
256256
"functions": {
257257
"api/*.php": {
258-
"runtime": "[email protected].0"
258+
"runtime": "[email protected].1"
259259
}
260260
}
261261
}
@@ -294,7 +294,7 @@ project
294294
{
295295
"functions": {
296296
"api/*.php": {
297-
"runtime": "[email protected].0"
297+
"runtime": "[email protected].1"
298298
}
299299
}
300300
}
@@ -319,7 +319,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
319319
{
320320
"functions": {
321321
"api/**/*.php": {
322-
"runtime": "[email protected].0",
322+
"runtime": "[email protected].1",
323323
"excludeFiles": "{foo/**,bar/config/*.yaml}",
324324
}
325325
}

0 commit comments

Comments
 (0)