Skip to content

Commit

Permalink
Merge pull request #1404 from kukulich/parser5
Browse files Browse the repository at this point in the history
PhpParser 5 & PhpUnit 11
  • Loading branch information
Ocramius authored Mar 12, 2024
2 parents 9042128 + 4078948 commit c713190
Show file tree
Hide file tree
Showing 47 changed files with 2,192 additions and 1,162 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ jobs:
custom-cache-suffix: "ci"

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

coding-standards:
name: "Check Coding Standards"
Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"php": "~8.2.0 || ~8.3.2",
"ext-json": "*",
"jetbrains/phpstorm-stubs": "2023.3",
"nikic/php-parser": "^4.18.0",
"nikic/php-parser": "^5.0.2",
"roave/signature": "^1.8.0"
},
"authors": [
Expand All @@ -33,7 +33,8 @@

],
"require-dev": {
"phpunit/phpunit": "^10.5.12"
"phpbench/phpbench": "^1.2.15",
"phpunit/phpunit": "^11.0.5"
},
"autoload": {
"psr-4": {
Expand All @@ -42,7 +43,8 @@
},
"autoload-dev": {
"psr-4": {
"Roave\\BetterReflectionTest\\": "test/unit"
"Roave\\BetterReflectionTest\\": "test/unit",
"Roave\\BetterReflectionBenchmark\\": "test/benchmark"
}
},
"conflict": {
Expand Down
Loading

0 comments on commit c713190

Please sign in to comment.