PHPackages                             xv4l3x/backup-interoperator - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. xv4l3x/backup-interoperator

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

xv4l3x/backup-interoperator
===========================

Laravel package to expose an authenticated backup endpoint using Spatie Laravel Backup.

v1.0.0(1y ago)066MITPHPPHP &gt;=8.0

Since May 16Pushed 1y ago1 watchersCompare

[ Source](https://github.com/xV4L3x/backup-interoperator)[ Packagist](https://packagist.org/packages/xv4l3x/backup-interoperator)[ RSS](/packages/xv4l3x-backup-interoperator/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

Introduction
------------

[](#introduction)

This is a proprietary package that is built to simplify MY backup process, it is here on packagist for convenience. Do not use it if you don't know what you are doing.

Requirements
------------

[](#requirements)

It's essential to have the command `mysqldump` installed on the deployment machine as this package uses it to create the database dump.

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

[](#installation)

The installation is easy, remind that this package depends on `spatie/laravel-backup` package, it will be installed automatically

```
composer require xv4l3x/backup-interoperator
```

Usage
-----

[](#usage)

If you didn't publish the `spatie/laravel-backup` config file, you can do it with the command:

```
php artisan vendor:publish --provider="Spatie\Backup\BackupServiceProvider"
```

Then you can publish the config file of this package with the command:

```
php artisan vendor:publish --provider="Xv4l3x\BackupInteroperator\BackupInteroperatorServiceProvider"
```

The config file provides default credentials for the authentication of the backup request, if you want to change them, you have to define the `BACKUP_INTEROPERATOR_USERNAME` and `BACKUP_INTEROPERATOR_PASSWORD` environment variables in your `.env` file.

Configuration
-------------

[](#configuration)

If you are using a remote s3 disk for your backups, just se the right credentials in the `.env` file:

```
AWS_ACCESS_KEY_ID=username
AWS_SECRET_ACCESS_KEY=password
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=bucket-name
AWS_ENDPOINT=endpoint-address
AWS_USE_PATH_STYLE_ENDPOINT=true
```

To point the laravel backups to the s3 disk then you should edit the `config/backup.php` file and set the `destination.disks` to `s3`:

```
'backup' => [
    'destination' => [
        'disks' => [
            's3'
        ]
    ]
]
```

If you don't want to back up all the source code and you only mind about the storage folder you can change the content of the `config/backup.php` file to:

```
'source' => [
    'files' => [
        'include' => [
            storage_path(), // storage/ only
        ],
        'exclude' => [],   // nothing to exclude
        'follow_links' => false,
    ],
    'databases' => [
        'mysql',
    ],
]
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance46

Moderate activity, may be stable

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

413d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/38079112?v=4)[Valerio Pio De Nicola](/maintainers/xv4l3x)[@xV4L3x](https://github.com/xV4L3x)

---

Top Contributors

[![xV4L3x](https://avatars.githubusercontent.com/u/38079112?v=4)](https://github.com/xV4L3x "xV4L3x (5 commits)")

### Embed Badge

![Health badge](/badges/xv4l3x-backup-interoperator/health.svg)

```
[![Health](https://phpackages.com/badges/xv4l3x-backup-interoperator/health.svg)](https://phpackages.com/packages/xv4l3x-backup-interoperator)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[illuminate/pagination

The Illuminate Pagination package.

12234.1M1.0k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9349.2M281](/packages/illuminate-pipeline)

PHPackages © 2026

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