Skip to content

Commit daced92

Browse files
authored
Merge pull request #555 from jakzal/phpunit-13
Exclude latest PHPUnit on PHP 8.3
2 parents 9eec7db + 5f88152 commit daced92

2 files changed

Lines changed: 18 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
1919
| behat | [Helps to test business expectations](http://behat.org/) | ✅ | ✅ | ✅ | ✅ |
2020
| box | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ✅ | ✅ | ✅ | ✅ |
2121
| churn | [Discovers good candidates for refactoring](https://github.com/bmitch/churn-php) | ✅ | ✅ | ✅ | ✅ |
22-
| codeception | [Codeception is a BDD-styled PHP testing framework](https://codeception.com/) | ✅ | ✅ | ✅ | ✅ |
22+
| codeception | [Codeception is a BDD-styled PHP testing framework](https://codeception.com/) | ✅ | ✅ | ✅ | ❌ |
2323
| composer | [Dependency Manager for PHP](https://getcomposer.org/) | ✅ | ✅ | ✅ | ✅ |
2424
| composer-bin-plugin | [Composer plugin to install bin vendors in isolated locations](https://github.com/bamarni/composer-bin-plugin) | ✅ | ✅ | ✅ | ✅ |
2525
| composer-lock-diff | [Composer plugin to check what has changed after a composer update](https://github.com/davidrjonas/composer-lock-diff) | ✅ | ✅ | ✅ | ✅ |
@@ -68,7 +68,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
6868
| phpmd | [A tool for finding problems in PHP code](https://phpmd.org/) | ✅ | ✅ | ✅ | ✅ |
6969
| phpmetrics | [Static Analysis Tool](http://www.phpmetrics.org/) | ✅ | ✅ | ✅ | ✅ |
7070
| phpmnd | [Helps to detect magic numbers](https://github.com/povils/phpmnd) | ✅ | ✅ | ✅ | ✅ |
71-
| phpspec | [SpecBDD Framework](http://www.phpspec.net/) | ✅ | ✅ | ✅ | ✅ |
71+
| phpspec | [SpecBDD Framework](http://www.phpspec.net/) | ✅ | ✅ | ✅ | ❌ |
7272
| phpstan | [Static Analysis Tool](https://github.com/phpstan/phpstan) | ✅ | ✅ | ✅ | ✅ |
7373
| phpstan-banned-code | [PHPStan rules for detecting calls to specific functions you don't want in your project](https://github.com/ekino/phpstan-banned-code) | ✅ | ✅ | ✅ | ✅ |
7474
| phpstan-beberlei-assert | [PHPStan extension for beberlei/assert](https://github.com/phpstan/phpstan-beberlei-assert) | ✅ | ✅ | ✅ | ✅ |
@@ -83,6 +83,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
8383
| phpunit | [The PHP testing framework](https://phpunit.de/) | ❌ | ✅ | ✅ | ✅ |
8484
| phpunit-10 | [The PHP testing framework (10.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
8585
| phpunit-11 | [The PHP testing framework (11.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
86+
| phpunit-12 | [The PHP testing framework (12.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
8687
| phpunit-8 | [The PHP testing framework (8.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
8788
| phpunit-9 | [The PHP testing framework (9.x version)](https://phpunit.de/) | ✅ | ✅ | ✅ | ✅ |
8889
| pint | [Opinionated PHP code style fixer for Laravel](https://github.com/laravel/pint) | ✅ | ✅ | ✅ | ✅ |

resources/test.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,21 @@
107107
}
108108
},
109109
"test": "phpunit --version",
110-
"tags": ["featured", "test", "exclude-php:8.2"]
110+
"tags": ["featured", "test", "exclude-php:8.2", "exclude-php:8.3"]
111+
},
112+
{
113+
"name": "phpunit-12",
114+
"summary": "The PHP testing framework (12.x version)",
115+
"website": "https://phpunit.de/",
116+
"command": {
117+
"phive-install": {
118+
"alias": "phpunit@^12.0",
119+
"bin": "%target-dir%/phpunit-12",
120+
"sig": "4AA394086372C20A"
121+
}
122+
},
123+
"test": "phpunit-12 --version",
124+
"tags": ["test", "exclude-php:8.2"]
111125
},
112126
{
113127
"name": "phpunit-11",

0 commit comments

Comments
 (0)