PHPackages                             hichemtab-tech/laravelfs - 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. hichemtab-tech/laravelfs

ActiveLibrary[Framework](/categories/framework)

hichemtab-tech/laravelfs
========================

Laravel application installer with full starter-kits including breeze and jetstream.

1.4.0(1mo ago)211112MITPHPPHP ^8.2CI failing

Since Mar 4Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/HichemTab-tech/LaravelFS)[ Packagist](https://packagist.org/packages/hichemtab-tech/laravelfs)[ Fund](https://www.buymeacoffee.com/hichemtabtech)[ GitHub Sponsors](https://github.com/hichemtab-tech)[ RSS](/packages/hichemtab-tech-laravelfs/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (18)Versions (11)Used By (0)

**LaravelFS - Community Laravel Full Starter-kits Installer compatible with Laravel 12**
========================================================================================

[](#laravelfs---community-laravel-full-starter-kits-installer-compatible-with-laravel-12)

**LaravelFS** was born from the idea of "Laravel Full Starter Kits" (or Full Stack) LOL – a way to bring back the legacy starter kits like Breeze and Jetstream that were removed from the official Laravel Installer, while still supporting the new Laravel 12 starter kits and community starter kits via `--using`.

> **Disclaimer:** This installer is **not officially supported by the Laravel team**. It's a **community-driven alternative** that extends the Laravel Installer by supporting **abandoned starter kits** like Breeze and Jetstream, as well as community starter kits via `--using`.
> We strive to keep it **up-to-date with Laravel's official installer** while offering extended flexibility.

> **Attribution:** LaravelFS is based on the open-source [laravel/installer](https://github.com/laravel/installer) project, licensed under MIT.

**Official Documentation**
--------------------------

[](#official-documentation)

LaravelFS functions similarly to the Laravel Installer but with **extra capabilities**.

### **Features:**

[](#features)

- Install Laravel projects just like the official installer.
- Support for **Breeze and Jetstream**, even if they are abandoned.
- Install **community starter kits** via `--using` (Packagist or git URL).
- Save and reuse project setups with **Templates**.
- Easily **remove saved templates** when no longer needed.
- Ensure that provided starter kits are **Composer packages of type `project`**.
- CLI command to fetch additional details about a starter kit package.

**For Laravel's official installation guide, refer to the [Laravel documentation](https://laravel.com/docs/installation).**

**Installation**
----------------

[](#installation)

To install LaravelFS globally, run:

```
composer global require hichemtab-tech/laravelfs
```

Make sure **`~/.composer/vendor/bin`** (Mac/Linux) or **`%USERPROFILE%/AppData/Roaming/Composer/vendor/bin`** (Windows) is in your system's PATH to use the `laravelfs` command globally.

**Usage**
---------

[](#usage)

LaravelFS works similarly to the Laravel Installer. You can create a new project using:

```
laravelfs new my-project
```

### **Installing with Breeze or Jetstream**

[](#installing-with-breeze-or-jetstream)

To create a Laravel project with Breeze or Jetstream, use:

```
laravelfs new my-project --breeze
laravelfs new my-project --jet
```

Even if these starter kits are abandoned, LaravelFS ensures they remain **available for installation**.

**Templates**
-------------

[](#templates)

If you want to reuse the same options for new projects, you can save a template.

### **Creating a Template**

[](#creating-a-template)

To create a reusable template, use:

```
laravelfs template:new my-template
```

This will prompt you the same way as `laravelfs new`, but instead of creating a project, it **saves your setup** as a template.

> **Templates include:**
>
> - Selected starter kits (Breeze, Jetstream, Vue, React, Livewire)
> - Starter-kit selection options
> - Extra flags like `--typescript`, `--ssr`, `--api`, etc.

### **Viewing Saved Templates**

[](#viewing-saved-templates)

List all saved templates:

```
laravelfs templates
```

Or view a specific template:

```
laravelfs template:show my-template
```

### **Using a Template**

[](#using-a-template)

Once saved, you can use your template anytime:

```
laravelfs use my-template my-project
```

This runs the exact same command as if you typed everything manually!

**Removing Templates**
----------------------

[](#removing-templates)

Need to clean up your templates? You can easily remove them.

### **Remove a Specific Template**

[](#remove-a-specific-template)

To delete a single template:

```
laravelfs template:remove my-template
```

### **Remove All Templates**

[](#remove-all-templates)

To remove **all saved templates** at once:

```
laravelfs template:remove --all
```

> **This action is irreversible.** Make sure you want to delete all templates before running this command.

**Installing Community Starter Kits**
-------------------------------------

[](#installing-community-starter-kits)

LaravelFS allows you to install **community Laravel starter kits** by providing a package name or git URL:

```
laravelfs new my-project --using=hichemtab-tech/forked-from-react-starter-kit
```

**What qualifies as a Laravel starter kit?**
A starter kit should provide a full Laravel project setup. Packagist packages should be **Composer packages of type `project`** and published on Packagist ([Submit your package here](https://packagist.org/packages/submit)).

**Ubuntu Users: Fixing LaravelFS Command Not Found Issue**
----------------------------------------------------------

[](#ubuntu-users-fixing-laravelfs-command-not-found-issue)

If you installed LaravelFS but **can’t run the `laravelfs` command**, it might be because Composer's global bin folder is **not in your system's PATH**.

### **Solution: Add Composer Bin to PATH**

[](#solution-add-composer-bin-to-path)

1. Open your terminal and edit the `~/.bashrc` file:

    ```
    nano ~/.bashrc
    ```

    *(If needed, use `sudo nano ~/.bashrc`)*
2. Add this line at the **bottom** of the file:

    ```
    export PATH="$PATH:$HOME/.config/composer/vendor/bin"
    ```
3. Save the file (`CTRL + X`, then `Y`, then `Enter`).
4. Apply the changes:

    ```
    source ~/.bashrc
    ```

Now, try running `laravelfs` again; it should work.

**Contributing**
----------------

[](#contributing)

Thank you for considering contributing to LaravelFS! We welcome contributions to improve the installer and keep it updated. Please submit issues and pull requests to the [GitHub repository](https://github.com/HichemTab-tech/LaravelFS).

**Code of Conduct**
-------------------

[](#code-of-conduct)

To ensure LaravelFS remains a welcoming project, please review and abide by our **Code of Conduct**.

**Security Vulnerabilities**
----------------------------

[](#security-vulnerabilities)

If you discover a security vulnerability, please open an issue or contact the maintainers.

**License**
-----------

[](#license)

LaravelFS is open-source software licensed under the **MIT license**.

### **Happy coding with LaravelFS**

[](#happy-coding-with-laravelfs)

GitAds Sponsored
----------------

[](#gitads-sponsored)

[![Sponsored by GitAds](https://camo.githubusercontent.com/d93488ee6f48b0b42b96f1c074168cc7602dbab9bc1d0183f6932e091e0daaba/68747470733a2f2f6769746164732e6465762f76312f61642d73657276653f736f757263653d68696368656d7461622d746563682f6c61726176656c667340676974687562)](https://gitads.dev/v1/ad-track?source=hichemtab-tech/laravelfs@github)

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance90

Actively maintained with recent releases

Popularity21

Limited adoption so far

Community9

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 ~54 days

Recently: every ~95 days

Total

8

Last Release

51d ago

Major Versions

0.1.0 → 1.0.02025-03-05

### Community

Maintainers

![](https://www.gravatar.com/avatar/38134fe6ea9fdf4498f9d3aaf21244664fe19397674789d7f0ac92340a017d52?d=identicon)[hichemtab-tech](/maintainers/hichemtab-tech)

---

Top Contributors

[![HichemTab-tech](https://avatars.githubusercontent.com/u/84734617?v=4)](https://github.com/HichemTab-tech "HichemTab-tech (68 commits)")

---

Tags

laravellaravel-installerlaravel-packagephplaravelinstallerstarter-kitjetstreambreezelaravelfs

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/hichemtab-tech-laravelfs/health.svg)

```
[![Health](https://phpackages.com/badges/hichemtab-tech-laravelfs/health.svg)](https://phpackages.com/packages/hichemtab-tech-laravelfs)
```

###  Alternatives

[laravel/installer

Laravel application installer.

83610.7M20](/packages/laravel-installer)[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

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

Laravel UI utilities and presets.

2.7k134.9M599](/packages/laravel-ui)[laravel-zero/framework

The Laravel Zero Framework.

3371.4M369](/packages/laravel-zero-framework)[laravel/breeze

Minimal Laravel authentication scaffolding with Blade and Tailwind.

3.0k31.3M148](/packages/laravel-breeze)

PHPackages © 2026

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