byteintelligent/bi-installer

This is a laravel installer for byte-intelligent products.

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

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

  1. From your projects root folder in terminal run:
    composer require byteintelligent/bi-installer
  1. Register the package

Register the package with laravel in config/app.php under providers with the following:

	'providers' => [
	    Byteintelligent\BiInstaller\Providers\BiInstallerServiceProvider::class,
	];
  1. 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"