bdcoder/installer

This is a laravel installer. It help to run a project easily.

Installs: 18

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:CSS

pkg:composer/bdcoder/installer

v1.0.4 2024-11-12 12:56 UTC

This package is auto-updated.

Last update: 2025-12-13 08:52:03 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 composer require bdcoder/installer
  1. Register the package

Register the package with laravel in bootstrap under providers.php with the following:

return [
    ...
    Bdc\Installer\Providers\AppServiceProvider::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="Bdc\Installer\Providers\AppServiceProvider"