diff --git a/CHANGELOG.md b/CHANGELOG.md index 401d16e..c9a4a62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to `dev-audit` will be documented in this file. +## 1.0.2 - 2025-01-15 + +Adjust default configuration by switching from phpunit to pest and adding peck + +## 1.0.1 - 2024-09-21 + +Added dev:lint command along with --lint flag on dev:audit + + ## 1.0.0 - 2024-08-25 Initial Release diff --git a/config/dev-audit.php b/config/dev-audit.php index 42527ed..4abc31e 100644 --- a/config/dev-audit.php +++ b/config/dev-audit.php @@ -6,8 +6,8 @@ ], 'audits' => [ [ - 'title' => 'PHPUnit', - 'command' => './vendor/bin/phpunit -d memory_limit=-1 --no-progress --configuration phpunit.xml;', + 'title' => 'Pest', + 'command' => './vendor/bin/pest -d memory_limit=-1 --no-progress --configuration phpunit.xml;', 'failure_hint' => 'Run tests using "php artisan test --stop-on-error" to help discover code issues in isolation.', ], [ @@ -33,6 +33,10 @@ 'title' => 'NPM Audit', 'command' => 'npm audit', ], + [ + 'title' => 'Peck', + 'command' => './vendor/bin/peck', + ], ], 'linters' => [ [