@@ -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" : " vercel-php@0.5.2 "
57+ "runtime" : " vercel-php@0.3.6 "
5858 }
5959 }
6060}
@@ -80,7 +80,7 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
8080## 🤗 Features
8181
8282- ** Architecture** : PHP development server (🚀 fast enough)
83- - ** PHP version** : 8.1.4
83+ - ** PHP version** : 7.0.x
8484- ** 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
8585- ** Speed** : cold ~ 250ms / warm ~ 5ms
8686- ** Memory** : ~ 90mb
@@ -90,9 +90,7 @@ Are you ready to deploy your first PHP project to Vercel? Click & Go!
9090
9191## 💯 Versions
9292
93- 94- 95- 93+ 9694
9795## ⚙️ Usage
9896
@@ -105,7 +103,7 @@ If you need to route everything to index, use `routes` property.
105103{
106104 "functions" : {
107105 "api/*.php" : {
108- "runtime" : " vercel-php@0.5.2 "
106+ "runtime" : " vercel-php@0.3.6 "
109107 }
110108 },
111109 "routes" : [
@@ -180,19 +178,19 @@ project
180178{
181179 "functions": {
182180 "api/*.php": {
183- "runtime": "vercel-php@0.5.2 "
181+ "runtime": "vercel-php@0.3.6 "
184182 },
185183
186184 // Can be list also directly
187185
188186 "api/index.php": {
189- "runtime": "vercel-php@0.5.2 "
187+ "runtime": "vercel-php@0.3.6 "
190188 },
191189 "api/users.php": {
192- "runtime": "vercel-php@0.5.2 "
190+ "runtime": "vercel-php@0.3.6 "
193191 },
194192 "api/books.php": {
195- "runtime": "vercel-php@0.5.2 "
193+ "runtime": "vercel-php@0.3.6 "
196194 }
197195 }
198196}
@@ -207,7 +205,7 @@ project
207205{
208206 "functions" : {
209207 "api/index.php" : {
210- "runtime" : " vercel-php@0.5.2 "
208+ "runtime" : " vercel-php@0.3.6 "
211209 }
212210 },
213211 "routes" : [
@@ -227,7 +225,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
227225{
228226 "functions" : {
229227 "api/*.php" : {
230- "runtime" : " vercel-php@0.5.2 " ,
228+ "runtime" : " vercel-php@0.3.6 " ,
231229 "memory" : 3008 ,
232230 "maxDuration" : 60
233231 }
@@ -254,7 +252,7 @@ project
254252{
255253 "functions" : {
256254 "api/*.php" : {
257- "runtime" : " vercel-php@0.5.2 "
255+ "runtime" : " vercel-php@0.3.6 "
258256 }
259257 }
260258}
@@ -293,7 +291,7 @@ project
293291{
294292 "functions" : {
295293 "api/*.php" : {
296- "runtime" : " vercel-php@0.5.2 "
294+ "runtime" : " vercel-php@0.3.6 "
297295 }
298296 }
299297}
@@ -318,7 +316,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
318316{
319317 "functions" : {
320318 "api/**/*.php" : {
321- "runtime" : " vercel-php@0.5.2 " ,
319+ "runtime" : " vercel-php@0.3.6 " ,
322320 "excludeFiles" : " {foo/**,bar/config/*.yaml}" ,
323321 }
324322}
0 commit comments