Skip to content

Commit

Permalink
Declare PHP 8.4 as the newest supported version
Browse files Browse the repository at this point in the history
As the comment indicates, this includes partially supported
versions. PHP-Parser includes support for all parts of PHP 8.4
that have landed in php-src.
  • Loading branch information
nikic committed Jul 13, 2024
1 parent 683130c commit caf5404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PhpParser/PhpVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function fromComponents(int $major, int $minor): self {
* if it is still under development.
*/
public static function getNewestSupported(): self {
return self::fromComponents(8, 3);
return self::fromComponents(8, 4);
}

/**
Expand Down

0 comments on commit caf5404

Please sign in to comment.