Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pest tool #485

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | [The elegant PHP Testing Framework](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 --version",
"tags": ["test"]
},
{
"name": "phpcov",
"summary": "a command-line frontend for the PHP_CodeCoverage library",
Expand Down
Loading