1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00

Release PHP-Parser 0.9.4

This commit is contained in:
nikic 2013-08-25 19:11:40 +02:00
parent 3d467ca18e
commit 1e5e280ae8
2 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,10 @@
Version 0.9.4-dev
Version 0.9.5-dev
-----------------
Nothing yet.
Version 0.9.4 (25.08.2013)
--------------------------
* [PHP 5.5] Add support for `ClassName::class`. This is parsed as an `Expr_ClassConstFetch` with `'class'` being the
constant name.
@ -29,6 +33,8 @@ Version 0.9.4-dev
* Fix "undefined index" notices when generating the expected tokens for a syntax error.
* Improve performance of `PrettyPrinter` construction by no longer using the `uniqid()` function.
Version 0.9.3 (22.11.2012)
--------------------------

View File

@ -15,7 +15,7 @@ Create a `composer.json` file in your project root and use it to define your dep
{
"require": {
"nikic/php-parser": "0.9.3"
"nikic/php-parser": "0.9.4"
}
}
@ -33,7 +33,7 @@ Installing as a PEAR package
Run the following two commands:
pear channel-discover nikic.github.com/pear
pear install channel://nikic.github.com/pear/PHPParser-0.9.3
pear install nikic/PHPParser-0.9.4
Installing as a Git Submodule
-----------------------------