PHPackages                             wr2net/lm-create - 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. wr2net/lm-create

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

wr2net/lm-create
================

To create the suggested structures, the execution options are shown below. To create a "Project", it will be created within the default "app" directory with the name of your project where all the modules will be located.To create the modules or the complete skeleton of the module, you must also inform your project, as shown in each command.

1.2.01(4mo ago)51901MITPHPPHP ^8.0

Since Feb 14Pushed 4mo ago1 watchersCompare

[ Source](https://github.com/wr2net/laravel-module-create)[ Packagist](https://packagist.org/packages/wr2net/lm-create)[ RSS](/packages/wr2net-lm-create/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (5)Versions (73)Used By (0)

Laravel Module Create
=====================

[](#laravel-module-create)

[![LM-CREATE](https://camo.githubusercontent.com/885f23b73c99c8ea2daa3070780c5f47ec3288e7662a554a61425f10a9169132/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2532304d6f64756c652532304372656174652d677265793f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c)](https://camo.githubusercontent.com/885f23b73c99c8ea2daa3070780c5f47ec3288e7662a554a61425f10a9169132/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2532304d6f64756c652532304372656174652d677265793f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c)

[![Packagist Downloads](https://camo.githubusercontent.com/cf53fbfa88c9527cc207af0b4f56f3e124806aaf2ca5aafcdb12ce51cfa63de5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7772326e65742f6c6d2d637265617465)](https://packagist.org/packages/wr2net/lm-create)[![GitHub Release](https://camo.githubusercontent.com/01cd9d463b5e80d5afd38341faea811b4969e5ed8f44de11198b60c08d20fb6a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f7772326e65742f6c61726176656c2d6d6f64756c652d637265617465)](https://packagist.org/packages/wr2net/lm-create)[![GitHub License](https://camo.githubusercontent.com/6f31ddf17e2e1e71d5dc6d0b72968d8eaf7273e5cd2f41796c4a5bb034f1a1c9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7772326e65742f6c61726176656c2d6d6f64756c652d637265617465)](https://github.com/wr2net/laravel-module-create/blob/master/LICENSE)[![PHP Version](https://camo.githubusercontent.com/e0d7e462e519b2161922d55de0ad2238d79fa8ff673ede65d0f1ddeaf90ec0a3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6772617a756c65782f6c61726176656c2d647261667461626c652e7376673f7374796c653d666c61742d737175617265)](https://php.net/)[![Laravel Version](https://camo.githubusercontent.com/7baf14ca417226710a7122de6567e95b1558450ed5f3c70cbcc3abb52a0efac6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31302e782d6666326432303f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c)](https://laravel.com/docs/10.x)[![Laravel Version](https://camo.githubusercontent.com/098a1562f4197754b0930358827aeaad3f7c30143bafb8d9633637dc037296a5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31312e782d6666326432303f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c)](https://laravel.com/docs/11.x)[![Laravel Version](https://camo.githubusercontent.com/7592d340e2de1142fa869382b819654d6a0bf7baf8e3c8aded777d652d68c01a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31322e782d6666326432303f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c)](https://laravel.com/docs/12.x)

🚀 Laravel Module Create is a complete module create for Laravel.
----------------------------------------------------------------

[](#-laravel-module-create-is-a-complete-module-create-for-laravel)

[Read Details](DETAILS.md)
--------------------------

[](#read-details)

To create the suggested structures, the execution options are shown below. To create a "Project", it will be created within the default "app" directory with the name of your project where all the modules will be located.

To create the modules or the complete skeleton of the module, you must also inform your project, as shown in each command.

After executing the skeleton creation, the Providers for registration will be displayed.

Remember that Laravel 10 and 11 have different places for declaring Providers.

This library create structure below
-----------------------------------

[](#this-library-create-structure-below)

```
└── MyProject
    ├── Commons
        └── Traits
            ├── RouteServiceProviderTrait.php
            └── SoftDeletes.php
    └── MyModules
        ├── Controllers
            └── Api
                └── MyModuleController.php
        ├── Models
            ├── MyModule.php
            └── Repositories
                ├── MyModuleRepositoryInterface.php
                └── MyModuleRepository.php
        ├── Providers
            ├── AppServiceProvider.php
            └── RouteServiceProvider.php
        ├── Requests
            └── MyModuleRequest.php
        ├── Resources
            ├── MyModuleCollection.php
            └── MyModuleResource.php
        ├── Routes
            ├── api.php
            └── web.php
        └── Services
            └── MyModuleService.php

```

---

� Installation
--------------

[](#-installation)

Install the package via Composer:

```
composer require --dev wr2net/lm-create
```

📚 Commands
----------

[](#-commands)

### To create a project:

[](#to-create-a-project)

```
php artisan lm-create:project MyProject
```

### To create a module:

[](#to-create-a-module)

```
php artisan lm-create:module MyProject MyModule
```

### To create a scaffold:

[](#to-create-a-scaffold)

```
php artisan lm-create:skeleton MyProject MyModule
```

### To create a basic scaffold:

[](#to-create-a-basic-scaffold)

```
php artisan lm-create:basic MyProject MyModule
```

#### This command creates the basic structure below

[](#this-command-creates-the-basic-structure-below)

```
└── MyProject
    ├── Commons
        └── Traits
            └── SoftDeletes.php
    └── MyModules
        ├── Models
            ├── MyModule.php
            └── Repositories
                ├── MyModuleRepositoryInterface.php
                └── MyModuleRepository.php
        ├── Providers
            └── AppServiceProvider.php
        └── Services
            └── MyModuleService.php

```

---

### If you need compound names, use quotes

[](#if-you-need-compound-names-use-quotes)

This is valid for Projects, Modules and Skeleton

Eg. Project:

```
php artisan lm-create:project 'My Project'
```

Eg. Module or Skeleton:

```
php artisan lm-create:module 'My Project' 'My Module'
php artisan lm-create:skeleton 'My Project' 'My Module'
```

📄 License
---------

[](#-license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

📝 TO DO List
------------

[](#-to-do-list)

ResourceDescriptionCategory\[v\] Run in productionNot is running by artisanFEAT\[v\] Basic SkeletonCreate basic skeleton to usage modelFEAT\[v\] Generate Unit TestsGenerate a basic structure for unit testing the module.FEAT\[v\] Generate Integration TestsGenerate a basic structure for integration testing the module.FEAT### FIX BUGS

[](#fix-bugs)

ResourceDescriptionCategory\[v\] No replaceIf module was created but, not is complete, in new generate cannot replace if exists resourcesBUG\[v\] NamespaceModules with compound names are not generating namespaces correctlyBUG🔧 For Developers
----------------

[](#-for-developers)

```
composer install
```

### Commands:

[](#commands)

```
php src/Config/lm-create-dev.php -f project:MyProject
```

```
php src/Config/lm-create-dev.php -f module:MyProject:MyModule
```

```
php src/Config/lm-create-dev.php -f skeleton:MyProject:MyModule
```

```
php src/Config/lm-create-dev.php -f basic:MyProject:MyModule
```

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance76

Regular maintenance activity

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

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

Recently: every ~24 days

Total

40

Last Release

133d ago

### Community

Maintainers

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

---

Top Contributors

[![wr2net](https://avatars.githubusercontent.com/u/21363779?v=4)](https://github.com/wr2net "wr2net (99 commits)")

---

Tags

laravelphp8laraveldevelopmentmodulesoperations

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/wr2net-lm-create/health.svg)

```
[![Health](https://phpackages.com/badges/wr2net-lm-create/health.svg)](https://phpackages.com/packages/wr2net-lm-create)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[zonneplan/laravel-module-loader

Module loader for Laravel

24118.4k](/packages/zonneplan-laravel-module-loader)[cybercog/laravel-paket

Composer personal web interface. Manage Laravel dependencies without switching to command line!

1753.3k](/packages/cybercog-laravel-paket)[gonetone/laravel-boost-windsurf-extension

Laravel Boost extension package that provides Windsurf editor and Windsurf JetBrains plugin integration.

239.1k](/packages/gonetone-laravel-boost-windsurf-extension)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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