Skip to content

Commit

Permalink
Merge pull request #513 from jakzal/phpunit-12
Browse files Browse the repository at this point in the history
Allow PHPUnit 12 to be installed
  • Loading branch information
jakzal authored Feb 10, 2025
2 parents 06251b7 + 36e5e8f commit 4d0123c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ It has been extracted as a separate project to make maintenance easier and enabl
| phpstan-strict-rules | [Extra strict and opinionated rules for PHPStan](https://github.com/phpstan/phpstan-strict-rules) | ✅ | ✅ | ✅ | ✅ |
| phpstan-symfony | [Symfony extension for PHPStan](https://github.com/phpstan/phpstan-symfony) | ✅ | ✅ | ✅ | ✅ |
| phpstan-webmozart-assert | [PHPStan extension for webmozart/assert](https://github.com/phpstan/phpstan-webmozart-assert) | ✅ | ✅ | ✅ | ✅ |
| phpunit | [The PHP testing framework](https://phpunit.de/) | ❌ | ✅ | ✅ | ✅ |
| phpunit | [The PHP testing framework](https://phpunit.de/) | ❌ | ❌ | ✅ | ✅ |
| phpunit-10 | [The PHP testing framework (10.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
| phpunit-11 | [The PHP testing framework (11.x version)](https://phpunit.de/) | ❌ | ✅ | ✅ | ✅ |
| phpunit-8 | [The PHP testing framework (8.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
| phpunit-9 | [The PHP testing framework (9.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
| pint | [Opinionated PHP code style fixer for Laravel](https://github.com/laravel/pint) | ✅ | ✅ | ✅ | ✅ |
Expand Down
18 changes: 16 additions & 2 deletions resources/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,21 @@
}
},
"test": "phpunit --version",
"tags": ["featured", "test", "exclude-php:8.1"]
"tags": ["featured", "test", "exclude-php:8.1", "exclude-php:8.2"]
},
{
"name": "phpunit-11",
"summary": "The PHP testing framework (11.x version)",
"website": "https://phpunit.de/",
"command": {
"phive-install": {
"alias": "phpunit@^11.0",
"bin": "%target-dir%/phpunit-11",
"sig": "4AA394086372C20A"
}
},
"test": "phpunit-11 --version",
"tags": ["test", "exclude-php:8.1"]
},
{
"name": "phpunit-10",
Expand All @@ -137,7 +151,7 @@
"sig": "4AA394086372C20A"
}
},
"test": "phpunit-9 --version",
"test": "phpunit-10 --version",
"tags": ["test"]
},
{
Expand Down

0 comments on commit 4d0123c

Please sign in to comment.