emanuellopes / wordpress-dumps
WordPress Package for laradumps
Installs: 1 224
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- laradumps/laradumps-core: dev-feat/add-wordpress-dumps
Requires (Dev)
- johnpbloch/wordpress-core: ^6.3
- laravel/pint: ^1.11
- pestphp/pest: ^2.14
README
How to use
- first install this package with composer and define WP_ENVIRONMENT_TYPE as local
composer require emanuellopes/wordpress-dumps --dev
define('WP_ENVIRONMENT_TYPE', 'local');
- if you want to override the location of env file you can always use the filter
add_filter('WordpressDumps/appBasePath', function(string $path) { return 'another location'; });
- Create a .env file in your theme or plugin or in other place, you can follow the reference for laradumps. https://laradumps.dev/get-started/configuration.html
For Docker users, you can use the following configuration
DS_APP_HOST=host.docker.internal
DS_APP_PORT=9191
DS_AUTO_INVOKE_APP=true #enabled
DS_SEND_QUERIES=true #enabled
For default php configuration you can use the following configuration
DS_APP_HOST=127.0.0.1
DS_APP_PORT=9191
DS_AUTO_INVOKE_APP=true #enabled
DS_SEND_QUERIES=true #enabled
then you can use it in your code like this
ds('my-dump');