PHPackages                             spizian/wizardtube - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. spizian/wizardtube

ActiveLibrary[Framework](/categories/framework)

spizian/wizardtube
==================

Wizard installation for laravel application

1.5(2y ago)012MITBladePHP ^8.1

Since Feb 10Pushed 2y agoCompare

[ Source](https://github.com/spizian/wizardtube)[ Packagist](https://packagist.org/packages/spizian/wizardtube)[ RSS](/packages/spizian-wizardtube/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (7)Used By (0)

Wizardtube installer package
============================

[](#wizardtube-installer-package)

- php 8.2
- require Laravel 10

Installation
------------

[](#installation)

```
composer require spizian/wizardtube
```

Code style will be automatically fixed by php-cs-fixer.

To secure the code so that it can only be accessed in certain domains, create a middleware class. Example "CheckDomain"

```
php artisan make:middleware CheckDomain
```

then create a handle function

```
public function handle(Request $request, Closure $next): Response
{
    if ($request->getHttpHost() != env('DOMAIN_SITE')) {
        return response('Create message here'); // Change respond with what you want.
    }
    return $next($request);
}
```

Import in route and and create a middleware group for CheckDomain.

```
use App\Http\Middleware\CheckDomain;

Route::middleware(CheckDomain::class)->group(function () {
    // Your routes here
});
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

6

Last Release

816d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/762d868864c0ec5deb2ca53e18633f88658d0ba1a6e8a44edce4d9ccf0ad1f27?d=identicon)[spizian](/maintainers/spizian)

---

Top Contributors

[![adimiuprix](https://avatars.githubusercontent.com/u/41278399?v=4)](https://github.com/adimiuprix "adimiuprix (12 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/spizian-wizardtube/health.svg)

```
[![Health](https://phpackages.com/badges/spizian-wizardtube/health.svg)](https://phpackages.com/packages/spizian-wizardtube)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k96.9M672](/packages/laravel-socialite)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k84.2M224](/packages/laravel-horizon)[laravel/ui

Laravel UI utilities and presets.

2.7k134.9M597](/packages/laravel-ui)[laravel/jetstream

Tailwind scaffolding for the Laravel framework.

4.1k19.8M136](/packages/laravel-jetstream)[stancl/tenancy

Automatic multi-tenancy for your Laravel application.

4.3k6.6M40](/packages/stancl-tenancy)[internachi/modular

Modularize your Laravel apps

1.1k662.4k8](/packages/internachi-modular)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
