/vendor/bin ?
~/.bashrc:
PATH="$PATH:/path/to/vendor/bin"
/vendor/bin/ , , , phpunit, - , - .
To fix this, add vendor/binto the beginning of your path in ~/.bashrc:
PATH="/path/to/vendor/bin:$PATH"
Then log out and start source ~/.bashrcor run source ~/.bashrc, and then the system should find it /vendor/bin/phpunitat startup phpunit.
source
share