diff --git a/README.md b/README.md index 4d1a8f42..300e0ebc 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ It has been extracted as a separate project to make maintenance easier and enabl * psalm - [Finds errors in PHP applications](https://getpsalm.org/) * psecio-parse - [Scans code for potential security-related issues](https://github.com/psecio/parse) * security-checker - [Checks composer dependencies for known security vulnerabilities](https://github.com/sensiolabs/security-checker) +* simple-phpunit - [The PHPUnit Bridge provides utilities to report legacy tests and usage of deprecated code and a helper for time-sensitive tests.](https://symfony.com/doc/current/components/phpunit_bridge.html) * testability - [Analyses and reports testability issues of a php codebase](https://github.com/edsonmedina/php_testability) ## Installation diff --git a/resources/tools.json b/resources/tools.json index 37518994..f94c1fc6 100644 --- a/resources/tools.json +++ b/resources/tools.json @@ -612,6 +612,21 @@ "test": "security-checker", "tags": ["featured"] }, + { + "name": "simple-phpunit", + "summary": "The PHPUnit Bridge provides utilities to report legacy tests and usage of deprecated code and a helper for time-sensitive tests.", + "website": "https://symfony.com/doc/current/components/phpunit_bridge.html", + "command": { + "composer-bin-plugin": { + "package": "symfony/phpunit-bridge", + "namespace": "symfony" + }, + "sh": { + "command": "simple-phpunit install" + } + }, + "test": "simple-phpunit --version" + }, { "name": "testability", "summary": "Analyses and reports testability issues of a php codebase",