pixamo/installer

pixamo/installer is a Laravel package that makes it easy to install your application with just one click. With this package, you can quickly set up your application's environment, dependencies, and configurations without having to manually run multiple commands or manually edit files. It streamlines

Installs: 215

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 1

Open Issues: 0

Language:Blade

v2.1.1 2023-10-19 08:57 UTC

This package is auto-updated.

Last update: 2024-03-19 09:48:47 UTC


README

It's a Laravel package that makes it easy to install your application with just one click. With this package, you can quickly set up your application's environment, dependencies, and configurations without having to manually run multiple commands or manually edit files. It streamlines

Pixamo Installer V1.0

Installation

You can install the package with Composer using the following command:

composer require pixamo/installer

Copy the package config to your local config with the publish command:

php artisan vendor:publish --tag=installer

You can also check the installer is now active or not.

use Pixamo\Installer\Installer;

Installer::isActive();

If installer is active you can redirect it to installer page.

if(Installer::isActive())
{
    return redirect('install');
}