@@ -54,7 +54,7 @@ Second file `vercel.json` is pure gold here. Setup your project with configurati
54
54
{
55
55
"functions" : {
56
56
"api/*.php" : {
57
- "runtime" : " vercel-php@0.6.1 "
57
+ "runtime" : " vercel-php@0.7.0 "
58
58
}
59
59
}
60
60
}
@@ -80,7 +80,7 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
80
80
## 🤗 Features
81
81
82
82
- ** Architecture** : PHP development server (🚀 fast enough)
83
- - ** PHP version** : 8.2 (https://example-php-8-2.vercel.app )
83
+ - ** PHP version** : 8.3 (https://example-php-8-2.vercel.app )
84
84
- ** Extensions** : apcu, bcmath, brotli, bz2, calendar, Core, ctype, curl, date, dom, ds, exif, fileinfo, filter, ftp, geoip, gettext, hash, iconv, igbinary, imap, intl, json, libxml, lua, mbstring, mongodb, msgpack, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, phalcon, Phar, protobuf, readline, redis, Reflection, runkit7, session, SimpleXML, soap, sockets, sodium, SPL, sqlite3, standard, swoole, timecop, tokenizer, uuid, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zlib, zip
85
85
- ** Speed** : cold ~ 250ms / warm ~ 5ms
86
86
- ** Memory** : ~ 90mb
@@ -90,6 +90,7 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
90
90
91
91
## 💯 Versions
92
92
93
+ - ` [email protected] ` - Node 18.x / PHP 8.3.x (
https://example-php-8-3.vercel.app )
93
94
- ` [email protected] ` - Node 18.x / PHP 8.2.x (
https://example-php-8-2.vercel.app )
94
95
- ` [email protected] ` - Node 18.x / PHP 8.1.x (
https://example-php-8-1.vercel.app )
95
96
- ` [email protected] ` - Node 18.x / PHP 8.0.x (
https://example-php-8-0.vercel.app )
@@ -106,7 +107,7 @@ If you need to route everything to index, use `routes` property.
106
107
{
107
108
"functions" : {
108
109
"api/*.php" : {
109
- "runtime" : " vercel-php@0.6.1 "
110
+ "runtime" : " vercel-php@0.7.0 "
110
111
}
111
112
},
112
113
"routes" : [
@@ -181,19 +182,19 @@ project
181
182
{
182
183
"functions": {
183
184
"api/*.php": {
184
- "runtime": "vercel-php@0.6.1 "
185
+ "runtime": "vercel-php@0.7.0 "
185
186
},
186
187
187
188
// Can be list also directly
188
189
189
190
"api/index.php": {
190
- "runtime": "vercel-php@0.6.1 "
191
+ "runtime": "vercel-php@0.7.0 "
191
192
},
192
193
"api/users.php": {
193
- "runtime": "vercel-php@0.6.1 "
194
+ "runtime": "vercel-php@0.7.0 "
194
195
},
195
196
"api/books.php": {
196
- "runtime": "vercel-php@0.6.1 "
197
+ "runtime": "vercel-php@0.7.0 "
197
198
}
198
199
}
199
200
}
@@ -208,7 +209,7 @@ project
208
209
{
209
210
"functions" : {
210
211
"api/index.php" : {
211
- "runtime" : " vercel-php@0.6.1 "
212
+ "runtime" : " vercel-php@0.7.0 "
212
213
}
213
214
},
214
215
"routes" : [
@@ -228,7 +229,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
228
229
{
229
230
"functions" : {
230
231
"api/*.php" : {
231
- "runtime" : " vercel-php@0.6.1 " ,
232
+ "runtime" : " vercel-php@0.7.0 " ,
232
233
"memory" : 3008 ,
233
234
"maxDuration" : 60
234
235
}
@@ -255,7 +256,7 @@ project
255
256
{
256
257
"functions" : {
257
258
"api/*.php" : {
258
- "runtime" : " vercel-php@0.6.1 "
259
+ "runtime" : " vercel-php@0.7.0 "
259
260
}
260
261
}
261
262
}
@@ -294,7 +295,7 @@ project
294
295
{
295
296
"functions" : {
296
297
"api/*.php" : {
297
- "runtime" : " vercel-php@0.6.1 "
298
+ "runtime" : " vercel-php@0.7.0 "
298
299
}
299
300
}
300
301
}
@@ -319,7 +320,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
319
320
{
320
321
"functions" : {
321
322
"api/**/*.php" : {
322
- "runtime" : " vercel-php@0.6.1 " ,
323
+ "runtime" : " vercel-php@0.7.0 " ,
323
324
"excludeFiles" : " {foo/**,bar/config/*.yaml}" ,
324
325
}
325
326
}
0 commit comments