PHPackages                             simianbv/generators - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. simianbv/generators

ActiveProject[Utility &amp; Helpers](/categories/utility)

simianbv/generators
===================

Generators

v1.0.12(4y ago)05.3kMITPHPPHP &gt;=7.3|^8.0

Since Jun 7Pushed 4y agoCompare

[ Source](https://github.com/Simianbv/Generators)[ Packagist](https://packagist.org/packages/simianbv/generators)[ RSS](/packages/simianbv-generators/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (14)Used By (0)

Generators
==========

[](#generators)

A generator for Laravel for controllers, models, views and migrations

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

[](#installation)

To install, use:

`composer require simianbv/generators`

next up;

`artisan vendor:publish --provider="Simianbv\Generators\GeneratorServiceProvider" --tag=generator-stubs``artisan vendor:publish --provider="Simianbv\Generators\GeneratorServiceProvider" --tag=generator-config`

to get the stubs, next up;

define your YAML
----------------

[](#define-your-yaml)

The YAML definitions are ready to be served and used to create models, controllers, resources and in the future, filters.

```
Role:                       # the name of the model
  namespace: Acl            # Define the relative namespace
  timestamps: true          # Allow timestamps for the model
  softDelete: true          # Allow softdeletes
  columns:                  # Define your columns
    id:                     # The name of the column
      type: bigInteger      # The column type
      primary: true         # Whether it's primary
      unsigned: true        # Should be unsigned
    name:                   # The name of the column
      type: string          # The column type
      nullable: false       # Nullable or not
      length: 50            # The length of the column
      unique: true          # Whether it should be unique
  relations:                # Define the relations
    Group:                  # The name of the related Model
      namespace: Acl        # Define the related Model's namespace
      type: belongsToMany   # Define the type of relation
      local: id             # Define the primary key in the related model
      foreign: id           # Define what the foreign key should be

```

Another example:

```
RoleUser:                   # The name of the pivot table
  namespace: Acl            # The relative namespace
  pivot_only: true          # Set to true if this is only a pivt table
  timestamps: true          # Whether you want timestamps
  columns:                  # Define your columns
    id:                     # The name of the column
      type: bigInteger      # The type
      primary: true         # Primary yes or no
      unsigned: true        # Whether is should be unsigned or not
    role_id:                # The name of the column ( note the _id )
      type: bigInteger      # The column type
      nullable: false       # Nullable yes or no
    user_id:                # The name of the column ( note the _id )
      type: bigInteger      # The column type
      nullable: false       # Nullable yes or no
  relations:                # The relations
    Role:                   # The name of the related Model
      namespace: Acl        # The relative namespace this model resides in
      type: hasOne          # The relation type
      local: role_id        # The local key ( note the _id )
      foreign: id           # The foreign table's primary key
    User:                   # The name of the related Model
      namespace:            # The namespace can be left blank
      type: hasOne          # The Relation type
      local: user_id        # The local column
      foreign: id           # The foreign model's column
```

To define the JSON Schema, a Resource class is generated in the `/app/Resources/Json/` directory where you can define the schema further. You can add layout elements to wrap them inside or align them horizontally or vertically.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity64

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

1802d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/80dd6fdf3d3250ac6f3b018db939ac5acdc485e26c0a8a3388a06ae452d292e5?d=identicon)[Simian-m](/maintainers/Simian-m)

---

Top Contributors

[![Simian-m](https://avatars.githubusercontent.com/u/37339938?v=4)](https://github.com/Simian-m "Simian-m (16 commits)")

---

Tags

laravelgenerators

### Embed Badge

![Health badge](/badges/simianbv-generators/health.svg)

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

###  Alternatives

[laracasts/generators

Advanced Laravel generators, that include schema information.

2.4k6.4M44](/packages/laracasts-generators)[laracademy/generators

This package will generate a Laravel Model based on your database table itself, filling in the required fields automatically.

355346.4k4](/packages/laracademy-generators)[summerblue/generator

Extend Laravel's generators scaffold.

34139.9k](/packages/summerblue-generator)[zachleigh/laravel-vue-generators

Generate Vue js files via artisan commands.

9039.6k](/packages/zachleigh-laravel-vue-generators)[webfactor/laravel-generators

Laravel generators for quickly creating entities.

3011.1k](/packages/webfactor-laravel-generators)[mckenziearts/laravel-command

A simple Laravel package to provide artisan new commands

321.2k](/packages/mckenziearts-laravel-command)

PHPackages © 2026

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