Skip to content

Commit

Permalink
Add Pest tool
Browse files Browse the repository at this point in the history
  • Loading branch information
benjy8001 committed Sep 5, 2023
1 parent da3dcf4 commit cbf1d60
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
| parallel-lint | [Checks PHP file syntax](https://github.com/php-parallel-lint/PHP-Parallel-Lint) | ✅ | ✅ | ✅ |
| paratest | [Parallel testing for PHPUnit](https://github.com/paratestphp/paratest) | ✅ | ✅ | ✅ |
| pdepend | [Static Analysis Tool](https://pdepend.org/) | ✅ | ✅ | ✅ |
| pest | [an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP](https://github.com/pestphp/pest) | ✅ | ✅ | ✅ |
| phan | [Static Analysis Tool](https://github.com/phan/phan) | ✅ | ✅ | ✅ |
| phive | [PHAR Installation and Verification Environment](https://phar.io/) | ✅ | ✅ | ✅ |
| php-coupling-detector | [Detects code coupling issues](https://akeneo.github.io/php-coupling-detector/) | ✅ | ✅ | ✅ |
Expand Down
17 changes: 17 additions & 0 deletions resources/test.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,23 @@
"test": "paratest --version",
"tags": ["test"]
},
{
"name": "pest",
"summary": "The elegant PHP Testing Framework",
"website": "https://github.com/pestphp/pest",
"command": {
"sh": {
"command": "composer global bin pest config allow-plugins.pestphp/pest-plugin true"
},
"composer-bin-plugin": {
"package": "pestphp/pest",
"namespace": "pest",
"links": {"%target-dir%/pest": "pest"}
}
},
"test": "pest -v",
"tags": ["test"]
},
{
"name": "phpcov",
"summary": "a command-line frontend for the PHP_CodeCoverage library",
Expand Down

0 comments on commit cbf1d60

Please sign in to comment.