Skip to content

Commit 152d997

Browse files
committed
updated php-parser to version 4.13.
some other small fixes.
1 parent 3222f56 commit 152d997

File tree

7 files changed

+308
-101
lines changed

7 files changed

+308
-101
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.test_fs
22
build/
33
vendor/
4+
.phpunit.result.cache

ChangeLog.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,33 @@
1+
Version 0.10.0
2+
-------------
3+
4+
* Updated to PHP-Parser 4.13 to support PHP 8.1.
5+
6+
Version 0.9.0
7+
-------------
8+
9+
* Updated to PHP-Parser 4.10 to support PHP 8.0.
10+
11+
Version 0.8.1
12+
-------------
13+
14+
* Updated PHPUnit to 6.0.
15+
* Removed support for PHP 5.x.
16+
17+
Version 0.7.0
18+
-------------
19+
20+
* Updated to PHP-Parser 4.0.
21+
122
Version 0.6.1
23+
-------------
224

325
* Follow symlinks below directories. (Previously only symlinks in the top
426
directory were followed)
527

628
Version 0.6.0
29+
-------------
30+
731
* Exclude phpctags when re-building phar
832
* Fix typo in README.md
933
* Fixed PHPUnit.xml.dist

PHPCtags.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class PHPCtags
77
{
8-
const VERSION = '0.9.1';
8+
const VERSION = '0.10.0';
99

1010
private $mFile;
1111

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "library",
66
"require": {
77
"php": ">=7.0",
8-
"nikic/php-parser": "^4.10"
8+
"nikic/php-parser": "^4.13"
99
},
1010
"require-dev": {
1111
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"

0 commit comments

Comments
 (0)