PHPackages                             espero-soft/artisan - 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. espero-soft/artisan

ActiveLibrary

espero-soft/artisan
===================

Laravel command line interface (CLI)

0638↓100%PHP

Since Dec 28Pushed 2y ago1 watchersCompare

[ Source](https://github.com/espero-soft/artisan)[ Packagist](https://packagist.org/packages/espero-soft/artisan)[ RSS](/packages/espero-soft-artisan/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

espero-soft/artisan
===================

[](#espero-softartisan)

A Laravel package for generating entities, CRUD, services operations for laravel project.

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

[](#installation)

Run the following command to install the package:

```
composer require espero-soft/artisan:dev-main
```

Update the `commands` method in the `app/Console/kernel.php` file:

```
/**
 * Register the commands for the application.
 */
protected function commands(): void
{
    $this->load(__DIR__.'/Commands');

    // Registering the MakeEntityCommand as a ClosureCommand
    $this->getArtisan()->add( new MakeEntityCommand() );
    // Registering the MakeCrudCommand as a ClosureCommand
    $this->getArtisan()->add( new MakeCrudCommand() );
    // Registering the MakeServiceCommand as a ClosureCommand
    $this->getArtisan()->add( new MakeServiceCommand() );

    require base_path('routes/console.php');
}
```

Usage
-----

[](#usage)

### Generate an Entity

[](#generate-an-entity)

To generate a new entity, use the following command:

```
php artisan make:entity YourEntityName
```

### Generate a CRUD

[](#generate-a-crud)

To create a complete CRUD for an existing entity, use the following command:

```
php artisan make:crud YourEntityName
```

Examples
--------

[](#examples)

Here are a few usage examples:

```
php artisan make:entity Post
php artisan make:crud Post
```

Contribute
----------

[](#contribute)

All contributions are welcome! If you'd like to improve this package, please open an issue to discuss the proposed changes.

Author
------

[](#author)

[Espero-Soft Informatiques](https://github.com/espero-soft/artisan)

License
-------

[](#license)

This package is under the MIT license. Refer to the `LICENSE` file for more details.

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity19

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/7bddbf7c40c6a674adaeff1787b33d3d3861a744cdc0d5aa6ec05ed92456a984?d=identicon)[Espero-Soft](/maintainers/Espero-Soft)

---

Top Contributors

[![mongodbn](https://avatars.githubusercontent.com/u/96735374?v=4)](https://github.com/mongodbn "mongodbn (77 commits)")

### Embed Badge

![Health badge](/badges/espero-soft-artisan/health.svg)

```
[![Health](https://phpackages.com/badges/espero-soft-artisan/health.svg)](https://phpackages.com/packages/espero-soft-artisan)
```

PHPackages © 2026

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