bijanbiria/laravel-deploy-wizard
Composer 安装命令:
composer require bijanbiria/laravel-deploy-wizard
包简介
A Laravel Installer Wizard similar to WordPress installation process
README 文档
README
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
.envfile generation if it does not exist - Database connection setup and validation
- Route-based installation flow (
deploy-wizardby 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:
- Step 1: Application Configuration (App Name, URL, Environment)
- Step 2: Locale Settings (Locale, Fallback Locale, Faker Locale)
- 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
- Bijan Biria - bijanbiria@gmail.com
📰 Article Link
- bijanbiria.com - Laravel Deploy Wizard – Revolutionizing Laravel Installation
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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 50
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-10