`composer` Pest test magic for Laravel apps
Automated TestingComposer is quite a Flexible utility. The composer.json file has a script section, and you can basically have anything in there that you need to frequently access.
One of my favourites is this one:
"scripts": {
...
"test": "vendor/bin/pest --parallel",
...
}
lang-jsonMagic, isn't it!