Download the PHP package aprendible/backup-ui without Composer

On this page you can find all versions of the php package aprendible/backup-ui. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package backup-ui

Backup UI for Laravel

Latest Version on Packagist GitHub Tests Action Status Total Downloads

A clean, self-contained admin UI on top of spatie/laravel-backup. List your backups per disk, run full / database-only / files-only backups, download or delete archives, clean up old backups, and review your backup configuration — all from the browser.

Requirements

Installation

Follow the steps below to get the UI running end to end.

1. Install the package with Composer

The service provider is registered automatically via package discovery — no manual config/app.php changes are required.

2. Run the interactive installer

The wizard will:

  1. Publish the spatie/laravel-backup config (config/backup.php) and the package config (config/backup-ui.php).
  2. Ask for your application/backup name, the databases to back up, and the destination disks.
  3. Ask how many days to keep all backups, an optional notification email, and the daily times for the backup and cleanup schedules.
  4. Patch config/backup.php with your answers and, if a chosen disk does not exist, offer to create it in config/filesystems.php.

Prefer to configure things by hand? Skip the wizard and publish the config on its own:

This is the contents of the published config/backup-ui.php file:

3. Define the authorization gate

The UI is protected by a Gate named backup-access (see Authorization below). Until you define it, every request returns 403. Add it to your AppServiceProvider::boot():

4. Make sure the scheduler runs

The package registers a daily backup:run and backup:clean. For those to fire, your app's scheduler must be running. In local development:

In production, add the single Laravel cron entry (* * * * * php artisan schedule:run) if you have not already.

5. Visit the UI

Log in as a user the gate allows and open /backup (or your configured prefix). You're done — the stylesheet is compiled and self-hosted, so there is no front-end build step in your application.

(Optional) Customize the views

Authorization

The UI is protected by a Gate. By default it looks for a gate named backup-access (override the name via the gate config key). Define it in your AppServiceProvider:

If no matching gate is defined, the UI returns 403 for every request.

Usage

Once installed, visit /backup (or your configured prefix) while authenticated as a user the gate allows. From there you can:

Scheduling

When schedule.backup is enabled the package registers a daily backup:run at 01:00, and when schedule.clean is enabled a daily backup:clean at 00:30. Make sure your application runs the Laravel scheduler:

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of backup-ui with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
illuminate/contracts Version ^11.0||^12.0||^13.0
laravel/prompts Version ^0.3.21
spatie/laravel-backup Version ^10.3
spatie/laravel-package-tools Version ^1.16
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package aprendible/backup-ui contains the following files

Loading the files please wait ...