pseux/backup

Laravel package to backup database to AWS S3

Maintainers

Details

github.com/pseux/backup

Source

Issues

Installs: 95

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/pseux/backup

1.3.6 2022-02-25 15:39 UTC

This package is auto-updated.

Last update: 2025-09-20 22:28:34 UTC


README

Config

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
AWS_BUCKET=

Examples

php artisan backup db
php artisan backup:import env

Scheduling backups

Add the following code to the schedule function in your App\Console\Kernel.php file:

$schedule->command('backup db')->daily();