worksome / foggy-laravel
Adds Foggy support in Laravel
Installs: 337 173
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 13
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- illuminate/console: ^9.46|^10.0
- illuminate/support: ^9.46|^10.0
- worksome/foggy: ^0.5
README
This package is a Laravel wrapper for Foggy.
Configuration of the plugin can be found at Foggy's docs.
Installation
For installation via composer
$ composer require worksome/foggy-laravel
Usage
This package adds a new artisan command for running Foggy. Simply type
$ php artisan db:dump
It will by default assume that the Foggy config file, will be in foggy.json
in the root fo the project.
A configuration file can be supplied by using --config
argument.
The artisan command will make the db dump to stdout
. The best way to parse this to a file is simply to pipe it.
$ php artisan db:dump > scrubbedDump.sql