composerにはnpmと同じようにscriptsを設定しておくと、composerのスクリプトとして実行できる機能があります。
npmのスクリプトに比べるとそんなに使われていないような気がしますが便利ですよ。
composer.json
{
"scripts": {
"test-unit": [
"@php vendor/bin/phpunit --testsuite Unit"
],
"test-feature": [
"@php artisan migrate:fresh --seed",
"@php vendor/bin/phpunit --testsuite Feature"
]
}
}