byteintelligent / bi-installer
这是一个用于byte-intelligent产品的laravel安装程序。
v0.1.1
2024-06-18 15:18 UTC
Requires
- php: ^7.0.0|^8.0.0
This package is auto-updated.
Last update: 2024-09-18 15:49:47 UTC
README
关于
使用此包,您可以在服务器上自动轻松安装您的laravel项目。
要求
安装
- 在终端中从您的项目根目录运行
composer require byteintelligent/bi-installer
- 注册包
在config/app.php
中的providers
下使用以下方式在laravel中注册该包
'providers' => [ Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider::class, ];
- 从您的项目根目录运行以下命令以发布包的视图、配置文件、资源和语言文件
php artisan vendor:publish --provider="Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider"