{"id":27707679,"url":"https://github.com/phwaleed2024/laravel-backup","last_synced_at":"2025-09-21T22:13:14.959Z","repository":{"id":288615180,"uuid":"968637878","full_name":"phwaleed2024/laravel-backup","owner":"phwaleed2024","description":"A Laravel package for database and storage backup with auto-cleanup.","archived":false,"fork":false,"pushed_at":"2025-09-20T16:01:39.000Z","size":15,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T18:16:38.594Z","etag":null,"topics":["basededatos","database-backup","dropbox-backup-script","filament","laravel","laravel-package","mysql-restore","nova","php","rest-api","restore","restore-database","security","spatie"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phwaleed2024.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-18T12:56:50.000Z","updated_at":"2025-09-20T16:02:20.000Z","dependencies_parsed_at":"2025-04-19T04:12:50.815Z","dependency_job_id":"b4ae8e95-0e89-4b94-87b8-dcedf12c7cb9","html_url":"https://github.com/phwaleed2024/laravel-backup","commit_stats":null,"previous_names":["phwaleed2024/laravel-backup"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/phwaleed2024/laravel-backup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phwaleed2024%2Flaravel-backup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phwaleed2024%2Flaravel-backup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phwaleed2024%2Flaravel-backup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phwaleed2024%2Flaravel-backup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phwaleed2024","download_url":"https://codeload.github.com/phwaleed2024/laravel-backup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phwaleed2024%2Flaravel-backup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276314456,"owners_count":25620921,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-21T02:00:07.055Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["basededatos","database-backup","dropbox-backup-script","filament","laravel","laravel-package","mysql-restore","nova","php","rest-api","restore","restore-database","security","spatie"],"created_at":"2025-04-26T07:55:32.703Z","updated_at":"2025-09-21T22:13:14.939Z","avatar_url":"https://github.com/phwaleed2024.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Backup 🚀\n\n![GitHub release](https://img.shields.io/github/release/phwaleed2024/laravel-backup.svg) ![PHP](https://img.shields.io/badge/PHP-7.4%2B-blue.svg) ![Laravel](https://img.shields.io/badge/Laravel-12-orange.svg)\n\nWelcome to the **Laravel Backup** repository! This package offers a straightforward solution for backing up your database and storage with automatic cleanup features. \n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Configuration](#configuration)\n- [Commands](#commands)\n- [Contributing](#contributing)\n- [License](#license)\n- [Releases](#releases)\n\n## Features\n\n- **Automatic Backups**: Schedule your backups effortlessly.\n- **Storage Backup**: Back up your storage files along with your database.\n- **Auto-Cleanup**: Keep your backup storage tidy by removing old backups automatically.\n- **Easy Integration**: Simple to integrate into any Laravel application.\n- **Support for Multiple Storage Options**: Works with local and cloud storage.\n\n## Installation\n\nTo install the Laravel Backup package, follow these steps:\n\n1. **Install via Composer**:\n\n   Run the following command in your terminal:\n\n   ```bash\n   composer require phwaleed2024/laravel-backup\n   ```\n\n2. **Publish the Configuration**:\n\n   After installation, publish the configuration file:\n\n   ```bash\n   php artisan vendor:publish --provider=\"Phwaleed2024\\LaravelBackup\\BackupServiceProvider\"\n   ```\n\n3. **Set Up Your Backup Schedule**:\n\n   You can set up your backup schedule in the `app/Console/Kernel.php` file.\n\n## Usage\n\nTo create a backup, you can use the following command:\n\n```bash\nphp artisan backup:run\n```\n\nThis command will create a backup of your database and storage files based on your configuration settings.\n\n## Configuration\n\nYou can configure the backup settings in the `config/backup.php` file. Here are some important options you can set:\n\n- **Database Connections**: Specify which database connections to back up.\n- **Storage Disks**: Define which storage disks to back up.\n- **Backup Frequency**: Set how often you want the backups to run.\n\n## Commands\n\nHere are some useful commands provided by the package:\n\n- **Run Backup**: `php artisan backup:run`\n- **List Backups**: `php artisan backup:list`\n- **Restore Backup**: `php artisan backup:restore {backup-name}`\n- **Cleanup Old Backups**: `php artisan backup:cleanup`\n\n## Contributing\n\nWe welcome contributions to the Laravel Backup package. If you want to contribute, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bug fix.\n3. Make your changes and commit them.\n4. Push your branch and open a pull request.\n\nPlease ensure that your code follows the coding standards and includes appropriate tests.\n\n## License\n\nThis package is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n\n## Releases\n\nFor the latest releases, please visit the [Releases section](https://github.com/phwaleed2024/laravel-backup/releases). Download the necessary files and execute them as needed to get the latest features and fixes.\n\n## Conclusion\n\nThank you for checking out the Laravel Backup package! We hope it simplifies your backup process and enhances your Laravel applications. For more information, refer to the [Releases section](https://github.com/phwaleed2024/laravel-backup/releases) to stay updated on the latest changes. \n\nHappy coding! 🎉","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphwaleed2024%2Flaravel-backup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphwaleed2024%2Flaravel-backup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphwaleed2024%2Flaravel-backup/lists"}