byteintelligent/bi-installer

这是一个用于byte-intelligent产品的laravel安装程序。

v0.1.1 2024-06-18 15:18 UTC

This package is auto-updated.

Last update: 2024-09-18 15:49:47 UTC


README

关于

使用此包,您可以在服务器上自动轻松安装您的laravel项目。

要求

安装

  1. 在终端中从您的项目根目录运行
    composer require byteintelligent/bi-installer
  1. 注册包

config/app.php中的providers下使用以下方式在laravel中注册该包

	'providers' => [
	    Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider::class,
	];
  1. 从您的项目根目录运行以下命令以发布包的视图、配置文件、资源和语言文件
    php artisan vendor:publish --provider="Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider"