Skip to content

Commit f6eefd5

Browse files
committed
wip
1 parent 2c3dcf3 commit f6eefd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

routes/web.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
'soketi',
2525
];
2626

27-
$php = $request->query('php', '83');
27+
$php = $request->query('php', '84');
2828

2929
$with = array_unique(explode(',', $request->query('with', 'mysql,redis,meilisearch,mailpit,selenium')));
3030

@@ -37,7 +37,7 @@
3737
],
3838
[
3939
'name' => 'string|alpha_dash',
40-
'php' => ['string', Rule::in(['74', '80', '81', '82', '83'])],
40+
'php' => ['string', Rule::in(['74', '80', '81', '82', '83', '84'])],
4141
'with' => 'array',
4242
'with.*' => [
4343
'required',
@@ -54,7 +54,7 @@
5454
}
5555

5656
if (array_key_exists('php', $errors)) {
57-
return response('Invalid PHP version. Please specify a supported version (74, 80, 81, 82 or 83).', 400);
57+
return response('Invalid PHP version. Please specify a supported version (74, 80, 81, 82, 83, or 84).', 400);
5858
}
5959

6060
if (array_key_exists('with', $errors)) {

0 commit comments

Comments
 (0)