olakunlevpn/laravel-installer-welcome 问题修复 & 功能扩展

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

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

olakunlevpn/laravel-installer-welcome

最新稳定版本:v1.1.0

Composer 安装命令:

composer require olakunlevpn/laravel-installer-welcome

包简介

Customizable welcome step for Laravel Installer

README 文档

README

Laravel Installer - Welcome Package

Latest Version Total Downloads

This package adds a customizable welcome step to Laravel Installer with your branding and messaging.

To learn all about it, head over to the extensive documentation.

Here's what you can do:

// Set your app name and logo
APP_NAME="Your Application"
APP_LOGO=images/logo.svg

Customize welcome features:

'features' => [
    'Quick and easy installation process',
    'Automatic database configuration',
    'Built-in requirements checker',
    'Secure admin account setup',
],

Show requirements before installation:

'show_requirements' => true,
'requirements' => [
    'PHP 8.2 or higher installed',
    'Database server ready (MySQL/PostgreSQL)',
    'Write permissions on storage and bootstrap/cache',
],

The welcome step displays your app name, logo, features list, and requirements checklist—all fully customizable via config or translations.

Installation

You can install the package via composer:

composer require olakunlevpn/laravel-installer-welcome

Add the step to your installer configuration in config/installer.php:

'steps' => [
    \Olakunlevpn\InstallerWelcome\Steps\WelcomeStep::class,
    \Olakunlevpn\Installer\Steps\RequirementsStep::class,
    // ... other steps
],

Publish the configuration (optional):

php artisan vendor:publish --tag=laravel-installer-welcome-config

You can find the full installation instructions in our documentation.

Usage

Add your logo to public/images/logo.svg and configure:

APP_NAME="My Application"
APP_LOGO=images/logo.svg
WELCOME_STEP_POSITION=1

That's it! The welcome step will appear with your branding.

Customization

Publish translations to customize text:

php artisan vendor:publish --tag=laravel-installer-welcome-translations

Publish views to customize layout:

php artisan vendor:publish --tag=laravel-installer-welcome-views

Learn more about customization in the documentation.

Changelog

Please see the main CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-13