PHPackages                             aaix/laravel-easy-backups - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. aaix/laravel-easy-backups

ActiveLaravel-package[Database &amp; ORM](/categories/database)

aaix/laravel-easy-backups
=========================

A developer-first, fluent and flexible package for creating database backups in Laravel.

v1.1.2(3mo ago)081[2 issues](https://github.com/jonaaix/laravel-easy-backups/issues)MITPHPPHP ^8.2|^8.3|^8.4|^8.5CI passing

Since Dec 27Pushed 2mo agoCompare

[ Source](https://github.com/jonaaix/laravel-easy-backups)[ Packagist](https://packagist.org/packages/aaix/laravel-easy-backups)[ RSS](/packages/aaix-laravel-easy-backups/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (9)Versions (20)Used By (0)

 [ ![Laravel Easy Backups Logo](https://raw.githubusercontent.com/jonaaix/laravel-easy-backups/main/docs/static/img/logo2.png) ](https://github.com/jonaaix/laravel-easy-backups)

Laravel Easy Backups
====================

[](#laravel-easy-backups)

A developer-first, fluent and flexible package for creating backups in Laravel.

 [![Latest Version on Packagist](https://camo.githubusercontent.com/c19d420bcfce20caf3dee35701a05b266b4c70eb0692cf7072f9929646944761/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616169782f6c61726176656c2d656173792d6261636b7570732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/aaix/laravel-easy-backups) [![Total Downloads](https://camo.githubusercontent.com/3c72b0ba49f092d35ac33df765461231d1094ca01e3692e4a3d5ab8e034ecdf3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616169782f6c61726176656c2d656173792d6261636b7570732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/aaix/laravel-easy-backups) [![GitHub Actions](https://camo.githubusercontent.com/cb5490014dda586badc7185db3a626f76db951c9f7d7b0987e628544eea1f89a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6f6e616169782f6c61726176656c2d656173792d6261636b7570732f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/jonaaix/laravel-easy-backups/actions/workflows/tests.yml) [![License](https://camo.githubusercontent.com/6a79f85f8db536a15bc7966e4cf7927b68ead819bd2698a9af9ffb06505fa192/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616169782f6c61726176656c2d656173792d6261636b7570732e7376673f7374796c653d666c61742d737175617265)](https://github.com/jonaaix/laravel-easy-backups/blob/main/LICENSE.md)

---

Installation
------------

[](#installation)

Install the package via Composer:

```
composer require aaix/laravel-easy-backups
```

Next, publish the configuration file. This is optional but recommended.

```
php artisan vendor:publish --provider="Aaix\LaravelEasyBackups\EasyBackupsServiceProvider" --tag="config"
```

A Quick Look
------------

[](#a-quick-look)

**The Easy Way (CLI)**

Use the **interactive wizard** to create or restore backups without remembering flags:

```
php artisan easy-backups
```

Or use the robust **direct commands** for cronjobs, scripts, and CI/CD:

```
php artisan easy-backups:db:create --compress
php artisan easy-backups:db:restore
```

**The Flexible Way (Fluent API)**

Define custom backup workflows directly in your code using the chainable API:

```
use Aaix\LaravelEasyBackups\Facades\Backup;

Backup::database(config('database.default'))
    ->saveTo('backup')
    ->compress()
    ->maxRemoteBackups(10)
    ->run();
```

### Documentation

[](#documentation)

For the full documentation, including advanced features, common recipes, and detailed guides, please visit our full [documentation website](https://jonaaix.github.io/laravel-easy-backups).

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance81

Actively maintained with recent releases

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 87.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

16

Last Release

114d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8d8ec042829e0d4060243b6c1067768dd31773ace52982c6ac4a4fbef207cbfd?d=identicon)[aaix](/maintainers/aaix)

---

Top Contributors

[![jonaaix](https://avatars.githubusercontent.com/u/15804690?v=4)](https://github.com/jonaaix "jonaaix (69 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (10 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/aaix-laravel-easy-backups/health.svg)

```
[![Health](https://phpackages.com/badges/aaix-laravel-easy-backups/health.svg)](https://phpackages.com/packages/aaix-laravel-easy-backups)
```

###  Alternatives

[tucker-eric/eloquentfilter

An Eloquent way to filter Eloquent Models

1.8k4.8M26](/packages/tucker-eric-eloquentfilter)[owen-it/laravel-auditing

Audit changes of your Eloquent models in Laravel

3.4k33.0M95](/packages/owen-it-laravel-auditing)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[cybercog/laravel-clickhouse

ClickHouse migrations for Laravel

163166.8k](/packages/cybercog-laravel-clickhouse)[toponepercent/baum

Baum is an implementation of the Nested Set pattern for Eloquent models.

3154.7k](/packages/toponepercent-baum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
