PHPackages                             redbastie/skele - 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. redbastie/skele

ActiveLibrary

redbastie/skele
===============

Rapid Laravel Livewire + TailwindCSS app development package.

1.0.12(5y ago)5333[1 issues](https://github.com/redbastie/skele/issues)MITPHP

Since Jan 31Pushed 5y ago2 watchersCompare

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

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

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

[](#no-longer-maintained)

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

---

Skele
=====

[](#skele)

Rapid Laravel Livewire + TailwindCSS app development package.

[![](https://camo.githubusercontent.com/21d88bc88032b6589ac267e873fc9a97b8e345a1743477dc1584d740704bbb6a/68747470733a2f2f692e696d6775722e636f6d2f61457263354b742e706e67)](https://www.youtube.com/watch?v=lSh-PPZrN-A)

#### Requirements

[](#requirements)

- Laravel 8
- NPM

#### Packages Used

[](#packages-used)

- [Laravel Livewire](https://github.com/livewire/livewire)
- [Laravel Timezone](https://github.com/jamesmills/laravel-timezone)
- [Doctrine DBAL](https://github.com/doctrine/dbal)
- [Honey](https://github.com/lukeraymonddowning/honey)
- [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)
- [Blade Heroicons](https://github.com/blade-ui-kit/blade-heroicons)

#### Features

[](#features)

- Rapid scaffolding commands (auth, components, CRUD, models)
- Automatic routing, migrations, timezones, &amp; password hashing
- Pre-configured TailwindCSS via webpack
- Bare-bones blade views, ready for you to customize
- PWA integration (icons, manifest, swipe down refresh)
- Infinite scrolling &amp; modal toggle support
- &amp; more

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

[](#installation)

Create a new Laravel 8 project:

```
laravel new my-app

```

Configure your `.env` app, database, and mail values:

```
APP_*
DB_*
MAIL_*

```

Require Skele via composer:

```
composer require redbastie/skele

```

Install Skele:

```
php artisan skele:install

```

Commands
--------

[](#commands)

### Install

[](#install)

```
php artisan skele:install

```

Installs the base index component, user model &amp; factory, config files, PWA icon &amp; manifest, CSS &amp; JS assets, index &amp; layout views, and configures Tailwind via webpack.

### Auth

[](#auth)

```
php artisan skele:auth

```

Generates auth scaffolding components &amp; views for login, logout, password forgot &amp; reset, register, and home.

### Model

[](#model)

```
php artisan skele:model {class}

```

Generates a new model &amp; factory with automatic migration methods included.

#### Examples

[](#examples)

```
php artisan skele:model Vehicle
php artisan skele:model Admin/Vehicle

```

### Migrate

[](#migrate)

```
php artisan skele:migrate {--fresh} {--seed}

```

Runs the automatic migrations via the `migration` methods in your models. This uses doctrine in order to diff &amp; apply the necessary changes to your database. Traditional Laravel migration files will be run before automatic migration methods. Optionally use `--fresh` to wipe the database before, and `--seed` to run seeders after.

#### Examples

[](#examples-1)

```
php artisan skele:migrate
php artisan skele:migrate --fresh
php artisan skele:migrate --fresh --seed

```

### Component

[](#component)

```
php artisan skele:component {class} {--full} {--modal}

```

Generates a new component &amp; view file. Optionally use the `--full` option to generate a full-page component with automatic routing properties included, or `--modal` to generate a modal component.

#### Examples

[](#examples-2)

```
php artisan skele:component Partial
php artisan skele:component Contact --full
php artisan skele:component Alert --modal

```

### CRUD

[](#crud)

```
php artisan skele:crud {class}

```

Generates CRUD components &amp; views for a specified model class. If the model does not currently exist, it will be created automatically.

#### Examples

[](#examples-3)

```
php artisan skele:crud Vehicle
php artisan skele:crud Admin/Vehicle

```

### List

[](#list)

```
php artisan skele:list {class} {--model=}

```

Generates a list component with searching &amp; infinite scrolling for the specified model. A `--model` must be specified.

#### Examples

[](#examples-4)

```
php artisan skele:list Vehicles --model=Vehicle
php artisan skele:list Admin/Vehicles --model=Admin/Vehicle

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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

13

Last Release

1923d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a86e5ece96dde8c2693fbacca2937362ca294d9280918d319fa47b5483a8c60?d=identicon)[redbastie](/maintainers/redbastie)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[namu/wirechat

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

54324.5k](/packages/namu-wirechat)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

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