I'm trying to attach my new Laravel 5.8 project on Bitnami WAPP's (https://bitnami.com/stack/wapp) (v 7.1) Postgresql server
My .env DB config:
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=rest
DB_USERNAME=postgres
DB_PASSWORD=*password defined during WAPP installation*
when I run php artisan migrate
I get:
Illuminate\Database\QueryException : could not find driver (SQL: select * from information_schema.tables where table_schema = public and table_name = migrations)
What am I doing wrong?