diff --git a/.gitignore b/.gitignore index f31ad28..35c6d36 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .private/ .php_cs.cache .phpunit.result.cache +.phpbench/ Gherkin infection.log per-mutator.md diff --git a/composer.json b/composer.json index 8c1e807..f572c3f 100644 --- a/composer.json +++ b/composer.json @@ -63,6 +63,8 @@ "phpunit": "vendor/bin/phpunit", "psalm": "vendor/bin/psalm", "uptodocs": "docs/testdocs", + "benchmark-baseline": "phpbench run benchmarks --report=aggregate --tag=original --retry-threshold=5", + "benchmark-compare-baseline": "phpbench run benchmarks --report=aggregate --ref=original --retry-threshold=5", "benchmark": "phpbench run benchmarks --report=aggregate" } }