定制 bijanbiria/laravel-deploy-wizard 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

bijanbiria/laravel-deploy-wizard

Composer 安装命令:

composer require bijanbiria/laravel-deploy-wizard

包简介

A Laravel Installer Wizard similar to WordPress installation process

README 文档

README

Latest Stable Version License

Laravel Deploy Wizard is a powerful Laravel Installer inspired by the WordPress installation process. It provides a user-friendly wizard for setting up Laravel applications easily, handling environment configuration, database setup, and executing necessary Artisan commands.

🚀 Features

  • Interactive step-by-step setup wizard
  • Automatic .env file generation if it does not exist
  • Database connection setup and validation
  • Route-based installation flow (deploy-wizard by default)
  • Support for publishing configuration and views for customization
  • Executes custom Artisan commands after installation

📦 Installation

You can install the package via Composer:

composer require bijanbiria/laravel-deploy-wizard

🔧 Configuration

After installation, you may publish the configuration file to customize the route and final commands:

php artisan vendor:publish --tag=deploy-wizard-config

The configuration file will be published at: config/deploywizard.php

Default Configuration:

return [
    'route' => 'deploy-wizard',         // Route for accessing the wizard
    'complete_route' => 'home',         // Route to redirect after installation
    'final_commands' => [
        'php artisan route:cache',      // Cache application routes
        'php artisan migrate --force', // Run migrations
    ],
];

🗂️ Publishing Views

If you want to customize the look and feel of the installer, you can publish the views:

php artisan vendor:publish --tag=deploy-wizard-views

The views will be published to: resources/views/vendor/deploy-wizard

You can edit these Blade files to match your UI design.

🛠️ Usage

After installation, you can simply visit the route:

http://yourdomain.com/deploy-wizard

💡 Note: You don't even need to manually visit this page! If the .env file is missing and you try to access any route in your application, the wizard will automatically launch and redirect you to the deployment page to complete the setup.

If the .env file does not exist, it will be created automatically from .env.example. If APP_KEY is missing, a new key will be generated, and all migrations and seeders will be executed automatically.

The wizard is structured in 3 main steps:

  1. Step 1: Application Configuration (App Name, URL, Environment)
  2. Step 2: Locale Settings (Locale, Fallback Locale, Faker Locale)
  3. Step 3: Database Configuration (DB Connection, Host, Port, Credentials)

At the end of Step 3, custom Artisan commands defined in the configuration will be executed.

⚙️ Custom Route

You can customize the route in the configuration file:

return [
    'route' => 'install-wizard' // Default is 'deploy-wizard'
];

Access it via:

http://yourdomain.com/install-wizard

Final Commands

You can define your own list of Artisan commands to be executed after the installation process. Simply update the final_commands array in config/deploywizard.php:

'final_commands' => [
    'php artisan storage:link',
    'php artisan migrate',
    'php artisan db:seed',
    'php artisan view:clear'
]

These commands will be executed sequentially once the wizard is complete.

🎓 License

This package is open-sourced software licensed under the MIT license.

Contributing

Feel free to submit issues and pull requests. We are open to new ideas!

👤 Author

📰 Article Link

bijanbiria/laravel-deploy-wizard 适用场景与选型建议

bijanbiria/laravel-deploy-wizard 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 50 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 05 月 10 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 bijanbiria/laravel-deploy-wizard 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 bijanbiria/laravel-deploy-wizard 我们能提供哪些服务?
定制开发 / 二次开发

基于 bijanbiria/laravel-deploy-wizard 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-10