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 3w 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

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity56

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

2097d 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

[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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