dragon-code/laravel-deploy-operations 问题修复 & 功能扩展

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

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

dragon-code/laravel-deploy-operations

最新稳定版本:7.1.2

Composer 安装命令:

composer require dragon-code/laravel-deploy-operations

包简介

Performing any actions during the deployment process

README 文档

README

the dragon code laravel deploy operations

Stable Version Total Downloads Github Workflow Status License

Performing any actions during the deployment process

Create specific classes for a one-time or more-time usage, that can be executed automatically after each deployment. Perfect for seeding or updating some data instantly after some database changes, feature updates, or perform any actions.

This package is for you if...

  • you regularly need to update specific data after you deploy new code
  • you often perform jobs after deployment
  • you sometimes forget to execute that one specific job and stuff gets crazy
  • your code gets cluttered with jobs that are not being used anymore
  • your co-workers always need to be reminded to execute that one job after some database changes
  • you often seed or process data in a migration file (which is a big no-no!)

Installation

To get the latest version of Deploy Operations, simply require the project using Composer:

composer require dragon-code/laravel-deploy-operations

Documentation

📚 Check out the full documentation to learn everything that Laravel Deploy Operations has to offer.

Basic Usage

Create your first operation using php artisan make:operation console command and define the actions it should perform.

use App\Models\Article;
use DragonCode\LaravelDeployOperations\Operation;

return new class extends Operation {
    public function __invoke(): void
    {
        Article::query()
            ->lazyById(chunkSize: 100, column: 'id')
            ->each->update(['is_active' => true]);

        // and/or any actions...
    }
};

Next, you can run the console command to start operations:

php artisan operations

Downloads Stats

This project has gone the way of several names, and here are the number of downloads of each of them:

License

This package is licensed under the MIT License.

统计信息

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

GitHub 信息

  • Stars: 238
  • Watchers: 1
  • Forks: 14
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-05-21