rikisubagja/waizly-installer

There is no license information available for the latest version (v1.0.4) of this package.

Waizly Application Installer Command

v1.0.4 2024-12-10 07:06 UTC

This package is auto-updated.

Last update: 2025-06-10 08:25:34 UTC


README

This package provides a command to install and configure the Waizly application.

Installation

To install this package, add it to your Laravel project using Composer:

composer require rikisubagja/waizly-installer

php artisan waizly:install

add app/Providers/AppServiceProvider.php

public function register()
{
    $this->commands([
        \WaizlyInstaller\Console\WaizlyInstaller::class,
    ]);
}