byteintelligent / bi-installer
This is a laravel installer for byte-intelligent products.
Package info
github.com/Byte-Intelligent/Byte-Installer
Language:CSS
pkg:composer/byteintelligent/bi-installer
v0.1.1
2024-06-18 15:18 UTC
Requires
- php: ^7.0.0|^8.0.0
This package is not auto-updated.
Last update: 2026-04-01 13:33:01 UTC
README
About
Using this package you can easily install your laravel project automatically in your server.
Requirements
Installation
- From your projects root folder in terminal run:
composer require byteintelligent/bi-installer
- Register the package
Register the package with laravel in config/app.php under providers with the following:
'providers' => [ Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider::class, ];
- Publish the packages views, config file, assets, and language files by running the following from your projects root folder:
php artisan vendor:publish --provider="Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider"