plugin-php
plugin-php copied to clipboard
PHP 8.3 not allowed in options?
PHP 8.3 is supported, right? It's not in the allowed choices from phpVersion options...
phpVersion: {
since: "0.13.0",
category: CATEGORY_PHP,
type: "choice",
default: "7.0",
description: "Minimum target PHP version.",
choices: [
{ value: "5.0" },
{ value: "5.1" },
{ value: "5.2" },
{ value: "5.3" },
{ value: "5.4" },
{ value: "5.5" },
{ value: "5.6" },
{ value: "7.0" },
{ value: "7.1" },
{ value: "7.2" },
{ value: "7.3" },
{ value: "7.4" },
{ value: "8.0" },
{ value: "8.1" },
{ value: "8.2" },
],
},
came here to note the same things. PHP 8.3 and 8.4 seem to be missing from list.
Still waiting on #2396.