PHPackages                             eelcol/laravel-make-facade - 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. [CLI &amp; Console](/categories/cli)
4. /
5. eelcol/laravel-make-facade

ActiveLibrary[CLI &amp; Console](/categories/cli)

eelcol/laravel-make-facade
==========================

Adds make:facade command to Laravel Artisan

1.0.1(6y ago)25.6kMITPHPPHP &gt;=7.0.0

Since Oct 23Pushed 6y ago1 watchersCompare

[ Source](https://github.com/eelcol/laravel-make-facade)[ Packagist](https://packagist.org/packages/eelcol/laravel-make-facade)[ RSS](/packages/eelcol-laravel-make-facade/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

Laravel Make Facade Command
===========================

[](#laravel-make-facade-command)

Facades can be extremely helpful in Laravel. This package adds a simple command to the CLI to add an easy way to create a new facade.

Example
=======

[](#example)

Use the following command to create a new facade:

```
php artisan make:facade NameOfFacade

```

This command creates a file in the folder `app/Facades`. It also creates a new `FacadeServiceProvider.php` file and updates this file everytime a new Facade is created.

After creating the first facade, this FacadeServiceProvider should be added to the `providers` array in `config/app.php`.

If you want to create a facade called 'Facebook', run the following command:

```
php artisan make:facade Facebook

```

This command will perform the following tasks:

- create the file app/Facades/Facebook.php
- create the file app/Providers/FacadeServiceProvider.php if this file does not exists yet
- adds an entry to the FacadeServiceProvider for this facade

You still have to add the FacadeServiceProvider to `config/app.php` and check if the facade returns the correct class.

Installation
============

[](#installation)

Require this package with composer.

```
composer require eelcol/laravel-make-facade

```

Laravel 5.5 and up uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

```
Eelcol\LaravelMakeFacade\MakeFacadeServiceProvider::class,

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community7

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

2393d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5c875ab5f996be5678de7da1bc0b5fb35d6e9aa87d512afb07df6e4db846d513?d=identicon)[eelcol](/maintainers/eelcol)

---

Top Contributors

[![eelcol](https://avatars.githubusercontent.com/u/9012901?v=4)](https://github.com/eelcol "eelcol (3 commits)")

---

Tags

laravelcommandfacadesmake

### Embed Badge

![Health badge](/badges/eelcol-laravel-make-facade/health.svg)

```
[![Health](https://phpackages.com/badges/eelcol-laravel-make-facade/health.svg)](https://phpackages.com/packages/eelcol-laravel-make-facade)
```

###  Alternatives

[hydreflab/laravel-make-me

Extendable Interactive Make Command for Laravel

371.2k](/packages/hydreflab-laravel-make-me)[flyingfoxx/commandcenter

Commands and domain events for any framework. Includes a Laravel implementation.

152.2k](/packages/flyingfoxx-commandcenter)

PHPackages © 2026

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