PHPackages                             imo-tikuwa/laravel-make-with-format - 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. imo-tikuwa/laravel-make-with-format

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

imo-tikuwa/laravel-make-with-format
===================================

Running the make:●● command will get Pint and laravel-ide-helper working (if installed).

v0.3.0(1y ago)013[4 PRs](https://github.com/imo-tikuwa/laravel-make-with-format/pulls)MITPHPPHP ^8.3CI passing

Since Feb 23Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/imo-tikuwa/laravel-make-with-format)[ Packagist](https://packagist.org/packages/imo-tikuwa/laravel-make-with-format)[ Docs](https://github.com/imo-tikuwa/laravel-make-with-format)[ GitHub Sponsors](https://github.com/imo-tikuwa)[ RSS](/packages/imo-tikuwa-laravel-make-with-format/feed)WikiDiscussions main Synced 1mo ago

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

Automatic format listener after Laravel's make:●● command
=========================================================

[](#automatic-format-listener-after-laravels-make-command)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d9e5b767df4f75fee0726bc633a870d0ac032f8009f10ed1e4e721de4f5d2cfb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696d6f2d74696b7577612f6c61726176656c2d6d616b652d776974682d666f726d61742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/imo-tikuwa/laravel-make-with-format)[![GitHub Tests Action Status](https://camo.githubusercontent.com/571dd5633eb452aa92b567a4d87fcf84184c3859d84c38418bf7340ecc48f701/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f696d6f2d74696b7577612f6c61726176656c2d6d616b652d776974682d666f726d61742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/imo-tikuwa/laravel-make-with-format/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/74f78a12ee4f45632b9d562d41782cbcf96bf37f34f7aaad628fff3bc0d9c5b0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f696d6f2d74696b7577612f6c61726176656c2d6d616b652d776974682d666f726d61742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/imo-tikuwa/laravel-make-with-format/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/0c9aabccf21f5899c6e70d4b15789e9d6e27fcbf1997fe8077a7f8765260775e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696d6f2d74696b7577612f6c61726176656c2d6d616b652d776974682d666f726d61742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/imo-tikuwa/laravel-make-with-format)

Provides a listener to prevent forgetting to run Laravel Pint and IDE Helper after executing the make:●● command.

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

[](#installation)

You can install the package via composer:

```
composer require --dev imo-tikuwa/laravel-make-with-format
```

You can publish the config file with:

```
php artisan vendor:publish --tag="make-with-format-config"
```

### Optional Dependencies

[](#optional-dependencies)

This package will use the following tools **if they are installed** in your project:

- [Laravel Pint](https://github.com/laravel/pint) (for code formatting)
- [IDE Helper Generator for Laravel](https://github.com/barryvdh/laravel-ide-helper) (for improved IDE support)

If you want to take advantage of these features, you can install them manually:

```
composer require --dev laravel/pint
composer require --dev barryvdh/laravel-ide-helper
```

For detailed installation and setup instructions, please refer to the documentation of each package:

- Laravel Pint:
- IDE Helper Generator:

Usage
-----

[](#usage)

After executing the make:●● command, Pint and laravel-ide-helper will work.

```
$ php artisan make:migration create_examples_table

   INFO  Migration [database/migrations/2025_02_23_072246_create_examples_table.php] created successfully.

Running pint on database/migrations

  ✓...

  ───────────────────────────────────────────────────────────────────── PSR 12
    FIXED   ..................................... 4 files, 1 style issue fixed
  ✓ database/migrations/2025_02_23_072246_create_examples_table.php new_with_…
```

```
$ php artisan make:model --test Example

   INFO  Test [tests/Feature/Models/ExampleTest.php] created successfully.

   INFO  Model [app/Models/Example.php] created successfully.

Running ide-helper:models on app/Models
Written new phpDocBlock to /app/Models/Example.php
Written new phpDocBlock to /app/Models/User.php

Running pint on app/Models

  ✓✓

  ───────────────────────────────────────────────────────────────────── PSR 12
    FIXED   .................................... 2 files, 2 style issues fixed
  ✓ app/Models/Example.php declare_strict_types, blank_line_after_opening_tag…
  ✓ app/Models/User.php                      no_trailing_whitespace_in_comment

Running pint on tests/Feature/Models

  ✓

  ───────────────────────────────────────────────────────────────────── PSR 12
    FIXED   ...................................... 1 file, 1 style issue fixed
  ✓ tests/Feature/Models/ExampleTest.php declare_strict_types, blank_line_aft…
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [imo-tikuwa](https://github.com/imo-tikuwa)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance71

Regular maintenance activity

Popularity5

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 78.1% 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 ~1 days

Total

5

Last Release

441d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/03ffdd79ec95f91c916b789ff16fc94e60bd8a53bdd2a4cd64a79963c9878c6b?d=identicon)[imo-tikuwa](/maintainers/imo-tikuwa)

---

Top Contributors

[![imo-tikuwa](https://avatars.githubusercontent.com/u/48991931?v=4)](https://github.com/imo-tikuwa "imo-tikuwa (25 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")

---

Tags

laravel-packagephplaravelimo-tikuwalaravel-make-with-format

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/imo-tikuwa-laravel-make-with-format/health.svg)

```
[![Health](https://phpackages.com/badges/imo-tikuwa-laravel-make-with-format/health.svg)](https://phpackages.com/packages/imo-tikuwa-laravel-make-with-format)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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