PHPackages                             uidb-dev/laravel-entity-generator - 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. uidb-dev/laravel-entity-generator

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

uidb-dev/laravel-entity-generator
=================================

Entity generator for service repository pattern

013PHP

Since Jul 21Pushed 1y agoCompare

[ Source](https://github.com/uidb-dev/laravel-entity-generator)[ Packagist](https://packagist.org/packages/uidb-dev/laravel-entity-generator)[ RSS](/packages/uidb-dev-laravel-entity-generator/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Entity Generator - SOA
==============================

[](#laravel-entity-generator---soa)

========

**Laravel Entity Generator**

Laravel 5.5 repository design pattern generator with SOA(Service Oriented Arcitecture) inspired from this blog post: .

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

[](#installation)

```
composer require uidb-dev/laravel-entity-generator
```

Usage
-----

[](#usage)

```
php artisan make:entity Example

```

It will generate the following structure by default configuration:

```
app
└── Repositories
    ├── Example
    |  ├── ExampleRepository.php
    |  ├── ExampleRepositoryServiceProvider.php
    |  └── ExampleInterface.php
    Services
    ├── Example
    |   ├── ExampleFacade.php
    |   ├── ExampleService.php
    |   └── ExampleServiceServiceProvider.php
    Models
    ├── Entities
    |   └── Example.php

```

Then add the service providers to the providers array in config/app.php :

```
'providers' => [

    App\Repositories\Example\ExampleRepositoryServiceProvider::class,
    App\Services\Example\ExampleServiceServiceProvider::class,
```

If you want to use the facade, add this to your facades in app.php:

```
'aliases' => [

    'ExampleFacade' => App\Services\Example\ExampleFacade::class,
```

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/16c0319c389a4f6659eb4420d31bc803999ad5992a7da926a7ff0fd360f3dde8?d=identicon)[Valante](/maintainers/Valante)

---

Top Contributors

[![valante](https://avatars.githubusercontent.com/u/5187914?v=4)](https://github.com/valante "valante (6 commits)")

### Embed Badge

![Health badge](/badges/uidb-dev-laravel-entity-generator/health.svg)

```
[![Health](https://phpackages.com/badges/uidb-dev-laravel-entity-generator/health.svg)](https://phpackages.com/packages/uidb-dev-laravel-entity-generator)
```

###  Alternatives

[hanson/laravel-work-exception

133.8k](/packages/hanson-laravel-work-exception)[wujunze/money-wrapper

MoneyPHP Wrapper

113.8k](/packages/wujunze-money-wrapper)

PHPackages © 2026

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