- Check requirements
- Get the current revision number:
git rev-parse HEAD
- Verify that your current revision is passing tests
- If not passing, use a build passing revision
When trying to install, I get this error every time I want to run any php artisan
command.
Fatal error: Uncaught exception 'ReflectionException' with message 'Class log does not exist
It seems that dev
packages are not installed and Laravel complains when it tries to load them, so the solution is to
install them with composer if you are on a development environment.
Run composer install --dev
instead of composer install
When running the app, I get the following error:
FatalErrorException in helpers.php line 17:
Call to undefined function locale_get_primary_language()
Getting the error This cache store does not support tagging., specially after registering a business.
In your .env
file you probably have CACHE_DRIVER=file
Edit your .env
file and set CACHE_DRIVER=array