Skip to content

Commit

Permalink
Merge pull request #191 from jakzal/feature/phpunit-9
Browse files Browse the repository at this point in the history
Exclude the latest phpunit (9) on php 7.2 and add phpunit 8
  • Loading branch information
jakzal authored Feb 9, 2020
2 parents c90f6d4 + 54341e1 commit 9438dbe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
* phpstan-webmozart-assert - [PHPStan extension for webmozart/assert](https://github.com/phpstan/phpstan-webmozart-assert)
* phpstan-exception-rules - [PHPStan rules for checked and unchecked exceptions](https://github.com/pepakriz/phpstan-exception-rules)
* phpunit - [The PHP testing framework](https://phpunit.de/)
* phpunit-8 - [The PHP testing framework (8.x version)](https://phpunit.de/)
* phpunit-7 - [The PHP testing framework (7.x version)](https://phpunit.de/)
* psalm - [Finds errors in PHP applications](https://psalm.dev/)
* psecio-parse - [Scans code for potential security-related issues](https://github.com/psecio/parse)
Expand Down
14 changes: 13 additions & 1 deletion resources/tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,19 @@
}
},
"test": "phpunit --version",
"tags": ["featured"]
"tags": ["featured", "exclude-php:7.2"]
},
{
"name": "phpunit-8",
"summary": "The PHP testing framework (8.x version)",
"website": "https://phpunit.de/",
"command": {
"phar-download": {
"phar": "https://phar.phpunit.de/phpunit-8.phar",
"bin": "%target-dir%/phpunit-8"
}
},
"test": "phpunit-8 --version"
},
{
"name": "phpunit-7",
Expand Down

0 comments on commit 9438dbe

Please sign in to comment.