PHPackages                             fyre/make - 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. fyre/make

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

fyre/make
=========

A collection of commands for generating files.

v3.0.11(11mo ago)0522MITPHP

Since Oct 9Pushed 11mo ago1 watchersCompare

[ Source](https://github.com/elusivecodes/FyreMake)[ Packagist](https://packagist.org/packages/fyre/make)[ RSS](/packages/fyre-make/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (10)Dependencies (16)Versions (20)Used By (2)

FyreMake
========

[](#fyremake)

**FyreMake** is a free, open-source collection of commands for generating files for [*FyrePHP*](https://github.com/elusivecodes/FyrePHP).

Table Of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
- [Commands](#commands)
    - [Make Behavior](#make-behavior)
    - [Make Cell](#make-cell)
    - [Make Cell Template](#make-cell-template)
    - [Make Command](#make-command)
    - [Make Config](#make-config)
    - [Make Controller](#make-controller)
    - [Make Element](#make-element)
    - [Make Entity](#make-entity)
    - [Make Helper](#make-helper)
    - [Make Job](#make-job)
    - [Make Lang](#make-lang)
    - [Make Layout](#make-layout)
    - [Make Middleware](#make-middleware)
    - [Make Migration](#make-migration)
    - [Make Model](#make-model)
    - [Make Template](#make-template)

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

[](#installation)

**Using Composer**

```
composer require fyre/make

```

In PHP:

```
$runner = $container->use(CommandRunner::class);

$runner->addNamespace('\Fyre\Make\Commands');
```

Commands
--------

[](#commands)

### Make Behavior

[](#make-behavior)

Generate a new [*Behavior*](https://github.com/elusivecodes/FyreORM#behaviors).

```
$runner->run('make:behavior', ['Example']);
```

### Make Cell

[](#make-cell)

Generate a new [*Cell*](https://github.com/elusivecodes/FyreView#cells).

```
$runner->run('make:cell', ['Example']);
```

### Make Cell Template

[](#make-cell-template)

Generate a new [*cell template*](https://github.com/elusivecodes/FyreView#cells).

```
$runner->run('make:cell_template', ['Example.display']);
```

### Make Command

[](#make-command)

Generate a new [*Command*](https://github.com/elusivecodes/FyreCommand#commands).

```
$runner->run('make:command', ['Example']);
```

### Make Config

[](#make-config)

Generate a new [*Config*](https://github.com/elusivecodes/FyreConfig) file.

```
$runner->run('make:config', ['example']);
```

### Make Controller

[](#make-controller)

Generate a new [*controller*](https://github.com/elusivecodes/FyreRouter#controller-routes).

```
$runner->run('make:controller', ['Example']);
```

### Make Element

[](#make-element)

Generate a new [element](https://github.com/elusivecodes/FyreView#elements).

```
$runner->run('make:element', ['example']);
```

### Make Entity

[](#make-entity)

Generate a new [*Entity*](https://github.com/elusivecodes/FyreEntity).

```
$runner->run('make:entity', ['Example']);
```

### Make Helper

[](#make-helper)

Generate a new [*Helper*](https://github.com/elusivecodes/FyreView#helpers).

```
$runner->run('make:helper', ['Example']);
```

### Make Job

[](#make-job)

Generate a new queue [*Job*](https://github.com/elusivecodes/FyreQueue).

```
$runner->run('make:job', ['Example']);
```

### Make Lang

[](#make-lang)

Generate a new [*language*](https://github.com/elusivecodes/FyreLang) file.

```
$runner->run('make:lang', ['Example']);
```

### Make Layout

[](#make-layout)

Generate a new view [*layout*](https://github.com/elusivecodes/FyreView#layouts) template.

```
$runner->run('make:layout', ['default']);
```

### Make Middleware

[](#make-middleware)

Generate a new [*Middleware*](https://github.com/elusivecodes/FyreMiddleware#middleware).

```
$runner->run('make:middleware', ['Example']);
```

### Make Migration

[](#make-migration)

Generate a new [*Migration*](https://github.com/elusivecodes/FyreMigration#migrations).

```
$runner->run('make:migration', ['Example']);
```

### Make Model

[](#make-model)

Generate a new [*Model*](https://github.com/elusivecodes/FyreORM#models).

```
$runner->run('make:model', ['Example']);
```

### Make Policy

[](#make-policy)

Generate a new [*Policy*](https://github.com/elusivecodes/FyreAuth#policies).

```
$runner->run('make:policy', ['Example']);
```

### Make Template

[](#make-template)

Generate a new view [*template*](https://github.com/elusivecodes/FyreView).

```
$runner->run('make:template', ['Example.index']);
```

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance50

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity48

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

Total

19

Last Release

356d ago

Major Versions

v1.1.0 → v2.02024-12-09

v2.1.1 → v3.02025-03-30

### Community

Maintainers

![](https://www.gravatar.com/avatar/fad81fd5941e3a637c8a5749d05ae3ed9314d5e2fee57f59c3d9ec3b41259c6b?d=identicon)[elusivecodes](/maintainers/elusivecodes)

---

Top Contributors

[![elusivecodes](https://avatars.githubusercontent.com/u/18050480?v=4)](https://github.com/elusivecodes "elusivecodes (26 commits)")

---

Tags

commandgeneratorphp

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/fyre-make/health.svg)

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

###  Alternatives

[seld/cli-prompt

Allows you to prompt for user input on the command line, and optionally hide the characters they type

24726.4M22](/packages/seld-cli-prompt)[illuminate/console

The Illuminate Console package.

13045.3M6.2k](/packages/illuminate-console)

PHPackages © 2026

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