kematjaya/backup-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kematjaya/backup-bundle

最新稳定版本:8.0.2

Composer 安装命令:

composer require kematjaya/backup-bundle

包简介

README 文档

README

  1. installation
composer require kematjaya/backup-bundle
  1. setting
## config/packages/backup.yaml

backup:
    name: postgresql
    location: '%kernel.project_dir%/var/backup'
  1. add route
    # config/routes/annotations.yaml
    backup:
         resource: '@BackupBundle/Resources/config/routes.yaml'
    /view-backup-file.html to view and download backup file
  2. usage
    php bin/console database:dump
  3. insert event
    namespace App\EventListener;
    
    use App\Repository\BackupRepository;
    use Kematjaya\BackupBundle\Event\AfterDumpEvent;
    use Kematjaya\BackupBundle\Event\BackupEvents;
    use Symfony\Component\EventDispatcher\EventSubscriberInterface;
    
    /**
     * Description of BackupEventListener
     *
     * @author apple
     */
    class BackupEventListener implements EventSubscriberInterface 
    {
        
        private BackupRepository $backupRepository;
        
        public function __construct(BackupRepository $backupRepository) 
        {
            $this->backupRepository = $backupRepository;
        }
        
        public static function getSubscribedEvents():array 
        {
            return [
                BackupEvents::AFTER_DUMP => "saveLog"
            ];
        }
    
        public function saveLog(AfterDumpEvent $evt):void
        {
            $this->backupRepository->create($evt->getFileName());
        }
    }

统计信息

  • 总下载量: 808
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-08-02

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固