@@ -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
-
57
+
58
58
}
59
59
}
60
60
}
@@ -90,7 +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] .2 ` - Node autodetect / PHP 8.3.x (
https://example-php-8-3.vercel.app )
93
+ - ` [email protected] .3 ` - Node autodetect / PHP 8.3.x (
https://example-php-8-3.vercel.app )
94
94
- ` [email protected] ` - Node autodetect / PHP 8.2.x (
https://example-php-8-2.vercel.app )
95
95
- ` [email protected] ` - Node autodetect / PHP 8.1.x (
https://example-php-8-1.vercel.app )
96
96
- ` [email protected] ` - Node autodetect / PHP 8.0.x (
https://example-php-8-0.vercel.app )
@@ -107,7 +107,7 @@ If you need to route everything to index, use `routes` property.
107
107
{
108
108
"functions" : {
109
109
"api/*.php" : {
110
-
110
+
111
111
}
112
112
},
113
113
"routes" : [
@@ -182,19 +182,19 @@ project
182
182
{
183
183
"functions": {
184
184
"api/*.php": {
185
-
185
+
186
186
},
187
187
188
188
// Can be list also directly
189
189
190
190
"api/index.php": {
191
-
191
+
192
192
},
193
193
"api/users.php": {
194
-
194
+
195
195
},
196
196
"api/books.php": {
197
-
197
+
198
198
}
199
199
}
200
200
}
@@ -209,7 +209,7 @@ project
209
209
{
210
210
"functions" : {
211
211
"api/index.php" : {
212
-
212
+
213
213
}
214
214
},
215
215
"routes" : [
@@ -229,7 +229,7 @@ Additional function properties are `memory`, `maxDuration`. Learn more about [fu
229
229
{
230
230
"functions" : {
231
231
"api/*.php" : {
232
-
232
+
233
233
"memory" : 3008 ,
234
234
"maxDuration" : 60
235
235
}
@@ -256,7 +256,7 @@ project
256
256
{
257
257
"functions" : {
258
258
"api/*.php" : {
259
-
259
+
260
260
}
261
261
}
262
262
}
@@ -295,7 +295,7 @@ project
295
295
{
296
296
"functions" : {
297
297
"api/*.php" : {
298
-
298
+
299
299
}
300
300
}
301
301
}
@@ -320,7 +320,7 @@ Runtimes support excluding some files or folders, [take a look at doc](https://v
320
320
{
321
321
"functions" : {
322
322
"api/**/*.php" : {
323
-
323
+
324
324
"excludeFiles" : " {foo/**,bar/config/*.yaml}" ,
325
325
}
326
326
}
0 commit comments