Skip to content

Commit a55c830

Browse files
committed
Tests: use v0.7.2
1 parent 009c8e1 commit a55c830

File tree

21 files changed

+22
-22
lines changed

21 files changed

+22
-22
lines changed

test/examples/00-php/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/00-test/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/01-cowsay/vercel.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": 2,
33
"builds": [
4-
{ "src": "index.php", "use": "[email protected].0" },
5-
{ "src": "subdirectory/index.php", "use": "[email protected].0" }
4+
{ "src": "index.php", "use": "[email protected].2" },
5+
{ "src": "subdirectory/index.php", "use": "[email protected].2" }
66
]
77
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }]
44
}

test/examples/03-env-vars/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "env/index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "env/index.php", "use": "[email protected].2" }]
44
}

test/examples/04-include-files/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"builds": [
44
{
55
"src": "index.php",
6-
"use": "[email protected].0",
6+
"use": "[email protected].2",
77
"config": { "includeFiles": ["included*.php"] }
88
}
99
]

test/examples/05-globals/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }]
44
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }]
44
}

test/examples/07-function/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }]
44
}

test/examples/08-opcache/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }]
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }]
44
}

test/examples/09-routes/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }],
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }],
44
"routes": [{ "src": "/(.*)", "dest": "index.php" }]
55
}

test/examples/10-composer-builds/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }],
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }],
44
"build": {
55
"env": {
66
"NOW_BUILDER_DEBUG": "1"

test/examples/11-composer-env/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "[email protected].0" }],
3+
"builds": [{ "src": "index.php", "use": "[email protected].2" }],
44
"build": {
55
"env": {
66
"COMPOSER": "composer-test.json"

test/examples/12-composer/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/index.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/13-composer-scripts/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/index.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/14-folders/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/16-php-ini/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

test/examples/17-zero/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"build": {

test/examples/18-exclude-files/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/**/*.php": {
4-
"runtime": "[email protected].0",
4+
"runtime": "[email protected].2",
55
"excludeFiles": "foo/**"
66
}
77
},

test/examples/19-server-workers/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"env": {

test/examples/20-read-files/vercel.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/*.php": {
4-
"runtime": "[email protected].0"
4+
"runtime": "[email protected].2"
55
}
66
},
77
"routes": [

0 commit comments

Comments
 (0)