Skip to content

Commit c713190

Browse files
authored
Merge pull request #1404 from kukulich/parser5
PhpParser 5 & PhpUnit 11
2 parents 9042128 + 4078948 commit c713190

File tree

47 files changed

+2192
-1162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2192
-1162
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ jobs:
298298
custom-cache-suffix: "ci"
299299

300300
- name: "PhpBench"
301-
run: "tools/vendor/bin/phpbench run --progress=dots --iterations=1"
301+
run: "vendor/bin/phpbench run --progress=dots --iterations=1"
302302

303303
coding-standards:
304304
name: "Check Coding Standards"

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"php": "~8.2.0 || ~8.3.2",
77
"ext-json": "*",
88
"jetbrains/phpstorm-stubs": "2023.3",
9-
"nikic/php-parser": "^4.18.0",
9+
"nikic/php-parser": "^5.0.2",
1010
"roave/signature": "^1.8.0"
1111
},
1212
"authors": [
@@ -33,7 +33,8 @@
3333

3434
],
3535
"require-dev": {
36-
"phpunit/phpunit": "^10.5.12"
36+
"phpbench/phpbench": "^1.2.15",
37+
"phpunit/phpunit": "^11.0.5"
3738
},
3839
"autoload": {
3940
"psr-4": {
@@ -42,7 +43,8 @@
4243
},
4344
"autoload-dev": {
4445
"psr-4": {
45-
"Roave\\BetterReflectionTest\\": "test/unit"
46+
"Roave\\BetterReflectionTest\\": "test/unit",
47+
"Roave\\BetterReflectionBenchmark\\": "test/benchmark"
4648
}
4749
},
4850
"conflict": {

0 commit comments

Comments
 (0)