I have the following setup:
- WP core has been downloaded and wp-config is setup correctly.
- No database has been created and no install has been done.
I want to implement a command to run migrations so I would like to interact with the DB through Laravel's database classes. (Eloquent ORM, Capsule)
But now even commands that have @when before_wp_load give this error: Error: The site you have requested is not installed.
This seems odd as I specifically say the command has to be run before WP. Is there support for something like when before_wp_installed ?
I have the following setup:
I want to implement a command to run migrations so I would like to interact with the DB through Laravel's database classes. (Eloquent ORM, Capsule)
But now even commands that have
@when before_wp_loadgive this error:Error: The site you have requested is not installed.This seems odd as I specifically say the command has to be run before WP. Is there support for something like
when before_wp_installed?