mediacity/installer

Installer for mediacity products

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

1.1 2021-12-10 11:15 UTC

This package is auto-updated.

Last update: 2025-07-10 19:43:13 UTC


README

composer require mediacity/installer

Publish all assets after installing the package by running this command :

php artisan vendor:publish --tag=installer

After that add 'is_install' middleware to your routes middleware groups example below :

    Route::group(['middleware' => ['is_install']], function () {

        // your other routes are now bind with installer middleware

    });

You can configure your envato app_id, required php version in config/installer.php

Done