byteintelligent / bi-installer
This is a laravel installer for byte-intelligent products.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:CSS
Requires
- php: ^7.0.0|^8.0.0
This package is not auto-updated.
Last update: 2025-06-25 09:57:42 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"