Skip to content

Commit 81957ec

Browse files
committed
revert changing default php version
1 parent eea57cc commit 81957ec

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/options.mjs

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,21 @@ export default {
55
since: "0.13.0",
66
category: CATEGORY_PHP,
77
type: "choice",
8-
default: "8.3",
8+
default: "7.0",
99
description: "Minimum target PHP version.",
1010
choices: [
11+
{ value: "5.0" },
12+
{ value: "5.1" },
13+
{ value: "5.2" },
14+
{ value: "5.3" },
15+
{ value: "5.4" },
16+
{ value: "5.5" },
17+
{ value: "5.6" },
18+
{ value: "7.0" },
19+
{ value: "7.1" },
20+
{ value: "7.2" },
21+
{ value: "7.3" },
22+
{ value: "7.4" },
1123
{ value: "8.0" },
1224
{ value: "8.1" },
1325
{ value: "8.2" },

0 commit comments

Comments
 (0)