PHPackages                             redbastie/bootwire - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. redbastie/bootwire

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

redbastie/bootwire
==================

Laravel + Livewire + Bootstrap Auth UI.

1.0.1(5y ago)1177MITPHP

Since Oct 5Pushed 5y ago4 watchersCompare

[ Source](https://github.com/redbastie/bootwire)[ Packagist](https://packagist.org/packages/redbastie/bootwire)[ Docs](https://github.com/redbastie/bootwire)[ RSS](/packages/redbastie-bootwire/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (2)Versions (3)Used By (0)

NO LONGER MAINTAINED
====================

[](#no-longer-maintained)

This package is no longer maintained. Please consider my latest package here:

---

Bootwire
========

[](#bootwire)

Bootwire is a replacement for the deprecated `laravel/ui` package. It uses Laravel + Livewire + Bootstrap. With a single command it will set you up with basic auth scaffolding for your next Laravel app. This includes login, registration, and password resets.

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

[](#installation)

Require via composer:

```
composer require redbastie/bootwire

```

Install the package:

```
php artisan bootwire:install

```

This will create the livewire components inside of the `app/Http/Livewire` folder. All of the JS, SASS, and view files are created inside of your `resources` folder. It will also insert the auth routes, NPM packages, and update the webpack configuration file.

Customization
-------------

[](#customization)

You can override any package trait method inside of your components.

For example, customizing the `Register` component:

```
class Register extends Component
{
    use RegistersUsers;

    public function rules()
    {
        return [
            'name' => ['required'],
            'email' => ['required', 'email', 'unique:users'],
            'password' => ['required', 'confirmed'],
            // add your new rules here
        ];
    }

    protected function createUser($validated)
    {
        return User::create([
            'name' => $validated['name'],
            'email' => $validated['email'],
            'password' => Hash::make($validated['password']),
            // add your new fields here
        ]);
    }
}

```

Just look at the package traits to see which methods you can override.

For all other customization, make any changes you want to the files created by this package.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

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

2

Last Release

2051d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/64050101?v=4)[redbastie](/maintainers/redbastie)[@redbastie](https://github.com/redbastie)

---

Top Contributors

[![redbastie](https://avatars.githubusercontent.com/u/64050101?v=4)](https://github.com/redbastie "redbastie (5 commits)")

### Embed Badge

![Health badge](/badges/redbastie-bootwire/health.svg)

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

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[santigarcor/laratrust

This package provides a flexible way to add Role-based Permissions to Laravel

2.3k5.4M43](/packages/santigarcor-laratrust)[overtrue/laravel-follow

User follow unfollow system for Laravel.

1.2k404.7k5](/packages/overtrue-laravel-follow)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)

PHPackages © 2026

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