With Laravel 5, when you call PHPUnit from terminal, your'll type in something like...
./vendor/bin/phpunit tests/Unit/TestClassName
I've been searching for how to omit ./vendor/bin/, so that you can call the test class above in the following way.
phpunit tests/Unit/TestClassName
Would it be possible to do stuff like this?
(The purpose is to use a package of Sublime Text.)
$PATH