1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-26 20:04:48 +01:00

Release PHP-Parser 4.8.0

This commit is contained in:
Nikita Popov 2020-08-09 12:23:20 +02:00
parent 23d9c17770
commit 8c58eb4cd4
2 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,17 @@
Version 4.7.1-dev Version 4.8.1-dev
----------------- -----------------
Version 4.8.0 (2020-08-09)
--------------------------
### Added
* [PHP 8.0] Added support for nullsafe operator, represented using the new
`Expr\NullsafePropertyFetch` and `Expr\NullsafeMethodCall` nodes.
* Added `phpVersion` option to the emulative lexer, which allows controlling the target version to
emulate (defaults to the latest available, currently PHP 8.0). This is useful to parse code that
uses reserved keywords from newer PHP versions as identifiers.
Version 4.7.0 (2020-07-25) Version 4.7.0 (2020-07-25)
-------------------------- --------------------------

View File

@ -22,7 +22,7 @@
}, },
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "4.7-dev" "dev-master": "4.8-dev"
} }
}, },
"autoload": { "autoload": {