Skip to content

Commit be69bd0

Browse files
mreidencseufert
authored andcommitted
Change default php version to 8.3 and remove config values for 5.x and 7.x.
This matches the default php version used in the php-parser project and removes options for very old eol versions. PHP 5.6 eol in January 2019 and 7.4 in November 2022.
1 parent 74906e9 commit be69bd0

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

src/options.mjs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,9 @@ export default {
55
since: "0.13.0",
66
category: CATEGORY_PHP,
77
type: "choice",
8-
default: "7.0",
8+
default: "8.3",
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" },
2311
{ value: "8.0" },
2412
{ value: "8.1" },
2513
{ value: "8.2" },

0 commit comments

Comments
 (0)