PHPackages                             meioco3/next-ide-helper - 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. meioco3/next-ide-helper

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

meioco3/next-ide-helper
=======================

Laravel ide helper rebuilt under steroids

01PHP

Since May 10Pushed 2y agoCompare

[ Source](https://github.com/a-long-way/next-ide-helper)[ Packagist](https://packagist.org/packages/meioco3/next-ide-helper)[ RSS](/packages/meioco3-next-ide-helper/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel ide helper rebuilt under steroids
=========================================

[](#laravel-ide-helper-rebuilt-under-steroids)

[![Latest Version on Packagist](https://camo.githubusercontent.com/0955134052330f58bd0166f6495abce3bb38d05c02d1023206af446c601c68fa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736f79687563652f6e6578742d6964652d68656c7065722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/soyhuce/next-ide-helper)[![GitHub Tests Action Status](https://camo.githubusercontent.com/30c517c069241483ad06e242e0e764a66d117be7abc36af3b6001b20a6979e68/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f736f79687563652f6e6578742d6964652d68656c7065722f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/soyhuce/next-ide-helper/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/2e0d5f3ebc84722996ccd1fb0d2cbf8968c4b16fb8f3af16e4503cca5ac0a790/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f736f79687563652f6e6578742d6964652d68656c7065722f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/soyhuce/next-ide-helper/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![GitHub PHPStan Action Status](https://camo.githubusercontent.com/ea758c2c55a36de70dbb63adf359434a0f38ab6019446013913e5580a6ea283e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f736f79687563652f6e6578742d6964652d68656c7065722f5048505374616e3f6c6162656c3d7068707374616e)](https://github.com/soyhuce/next-ide-helper/actions?query=workflow%3APHPStan+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/06a372b33adecf1d149a919052f37e208aabdd675da0493a682c78a7e757dcdb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736f79687563652f6e6578742d6964652d68656c7065722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/soyhuce/next-ide-helper)

This package aims to be an easy extendable ide-helper generator.

It was inspired by the great work of [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper).

It provides completion for Eloquent magic (model attributes, scopes, relations, ...), registered macros of Macroable classes, container instances, ...

- [Installation](#installation)
- [Usage](#usage)
    - [Models](#models)
        - [Attributes](#attributes)
        - [Custom Collection](#custom-collection)
        - [Query Builder](#query-builder)
        - [Relations](#relations)
        - [Extensions](#extensions)
    - [Macros](#macros)
    - [Phpstorm meta](#phpstorm-meta)
    - [Factories](#factories)
    - [Aliases](#aliases)
    - [Generate all](#generate-all)
    - [Custom application bootstrap](#custom-application-bootstrap)
    - [Custom content in docblock](#custom-content-in-docblock)
- [Contributing](#contributing)
- [License](#license)

Installation
============

[](#installation)

You should install this package using composer :

```
composer require --dev soyhuce/next-ide-helper
```

You may want to publish configuration file :

```
php artisan vendor:publish --tag=next-ide-helper-config
```

You're done !

Usage
=====

[](#usage)

Models
------

[](#models)

The command `php artisan next-ide-helper:models` will generate multiple elements to help your ide understand what you are doing. This package needs you to have access to a migrated database.

It will add docblock to your classes and will create an `_ide_models.php` file. This file **must not** be included but only analyzed by your ide.

### Attributes

[](#attributes)

The command resolves model attributes from the database. They are added to your model class docblock. If the attribute has a cast, the package will cast properly the attribute.

```
/**
 * @property int $id
 * @property string $name
 * @property string $email
 * @property \Illuminate\Support\Carbon|null $email_verified_at
 * @property string $password
 * @property string|null $remember_token
 * @property \Illuminate\Support\Carbon $created_at
 * @property \Illuminate\Support\Carbon $updated_at
 */
class User extends \Illuminate\Database\Eloquent\Model
{
    // ...
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];
}
```

Attribute casting will also work with custom casts :

```
use App\Email;

class EmailCast implements \Illuminate\Contracts\Database\Eloquent\CastsAttributes
{
    public function get($model, $key, $value, $attributes): Email
    {
        return new Email($value);
    }

    // ...
}

class User extends Model
{
    protected $casts = [
        'email' => EmailCast::class,
    ];
}
```

This will produce `@property \App\Email $email`

Note that the type must be defined as return type or in docblock's `@return` of the `get` method.

The command also adds attributes from accessors as read-only properties :

```
/**
 * @property-read string $upper_name
 */
class User extends Model
{
    public function getUpperNameAttribute(): string
    {
        return Str::upper($this->name);
    }
}
```

### Custom collection

[](#custom-collection)

In case your model defines a custom collection, the command will add `all` method on the model's docblock to re-define return type :

```
use \App\Collections\UserCollection;

/**
 * @method static \App\Collections\UserCollection all(array|mixed $columns = ['*'])
 */
class User extends Model
{
    public function newCollection(array $models = []): UserCollection
    {
        return new UserCollection($models);
    }
}
```

### Query Builder

[](#query-builder)

If your model defines a custom Eloquent builder, the command will add some tags on the model docblock.

```
use App\Builder\UserBuilder;
/**
 * @method static \App\Builder\UserBuilder query()
 * @mixin \App\Builder\UserBuilder
 */
class User extends Model
{
    public function newEloquentBuilder($query)
    {
        return new UserBuilder($query);
    }
}
```

It will also add some tags on the builder to help your ide :

- where clauses based on model attributes
- return values for result values

```
use Illuminate\Database\Eloquent\Builder;

/**
 * @method \App\Builder\UserBuilder whereId(int|string $value)
 * @method \App\Builder\UserBuilder whereName(string $value)
 * @method \App\Builder\UserBuilder whereEmail(string $value)
 * @method \App\Builder\UserBuilder whereEmailVerifiedAt(\Illuminate\Support\Carbon|string|null $value)
 * @method \App\Builder\UserBuilder wherePassword(string $value)
 * @method \App\Builder\UserBuilder whereRememberToken(string|null $value)
 * @method \App\Builder\UserBuilder whereCreatedAt(\Illuminate\Support\Carbon|string $value)
 * @method \App\Builder\UserBuilder whereUpdatedAt(\Illuminate\Support\Carbon|string $value)
 * @method \App\User create(array $attributes = [])
 * @method \Illuminate\Database\Eloquent\Collection|\App\User|null find($id, array $columns = ['*'])
 * @method \Illuminate\Database\Eloquent\Collection findMany($id, array $columns = ['*'])
 * @method \Illuminate\Database\Eloquent\Collection|\App\User findOrFail($id, array $columns = ['*'])
 * @method \App\User findOrNew($id, array $columns = ['*'])
 * @method \App\User|null first(array|string $columns = ['*'])
 * @method \App\User firstOrCreate(array $attributes, array $values = [])
 * @method \App\User firstOrFail(array $columns = ['*'])
 * @method \App\User firstOrNew(array $attributes = [], array $values = [])
 * @method \App\User forceCreate(array $attributes = [])
 * @method \Illuminate\Database\Eloquent\Collection get(array|string $columns = ['*'])
 * @method \App\User getModel()
 * @method \Illuminate\Database\Eloquent\Collection getModels(array|string $columns = ['*'])
 * @method \App\User newModelInstance(array $attributes = [])
 * @method \App\User updateOrCreate(array $attributes, array $values = [])
 * @template TModelClass
 * @extends \Illuminate\Database\Eloquent\Builder
 */
class UserBuilder extends Builder
{
}
```

If your model does not define a custom builder, `next-ide-helper:models` will create fake classes in `_ide_models.php`with the docblocks to provides auto-completion.

### Scopes

[](#scopes)

All scopes of your models will be added as method of their builder (in the custom query builder or in `_ide_models.php`) .

```
class User extends Model
{
    public function scopeWhereVerified($query, bool $verified = true): void
    {
        $query->whereNull('email_verified_at', 'and', !$verified);
    }
}
```

[![](docs/model_scope_autocomplete.png)](docs/model_scope_autocomplete.png)

This will produce `@method \App\Builder\UserBuilder whereVerified(bool $verified = true)` on your custom builder.

Note that your ide can complain with `Non-static method 'whereVerified' should not be called statically, but the class has the '__magic' method.` if you just call `User::whereVerified()`. That's why we advise you to use `User::query()->...`.

### Relations

[](#relations)

The models command will also resolve relations of your model and provide a lot of completion helpers.

```
/**
 * @property-read \Illuminate\Database\Eloquent\Collection $posts
 */
class User extends Model
{
    public function posts(): HasMany
    {
        return $this->hasMany(Post::class);
    }
}

class Post extends Model
{
    public function scopeWherePublished($query): void
    {
        return $query->whereNotNull('published_at');
    }
}
```

[![](docs/scope_for_relation_autocomplete.png)](docs/scope_for_relation_autocomplete.png)

Custom builders and custom collections are also correctly resolved by the ide :

[![](docs/collection_for_relation_autocomplete.png)](docs/collection_for_relation_autocomplete.png)

### Larastan friendly tags

[](#larastan-friendly-tags)

In case you use PHPStan or Larastan, you can have more information about the collections defining `models.larastan_friendly` config to `true`.

With this config, you will get the extra tags in you models

```
/**
 * @phpstan-method static \App\Collections\UserCollection all(array|mixed $columns = ['*'])
 */
class User extends Model {}
```

and in your custom builders

```
/**
 * @phpstan-method \Illuminate\Database\Eloquent\Collection|\App\User|null find($id, array $columns = ['*'])
 * @phpstan-method \Illuminate\Database\Eloquent\Collection findMany($id, array $columns = ['*'])
 * @phpstan-method \Illuminate\Database\Eloquent\Collection|\App\User findOrFail($id, array $columns = ['*'])
 * @phpstan-method \Illuminate\Database\Eloquent\Collection get(array|string $columns = ['*'])
 * @phpstan-method \Illuminate\Database\Eloquent\Collection getModels(array|string $columns = ['*'])
 * @template TModelClass
 * @extends \Illuminate\Database\Eloquent\Builder
 */
class UserBuilder extends Builder {}
```

### Extensions

[](#extensions)

Sometimes, the command cannot resolve or anticipate every way everything are resolved.

That's why this package provides a way to customize some resolution logic adding your custom resolver in `next-ide-helper.models.extensions` config.

Macros
------

[](#macros)

This package provides a `next-ide-helper:macros`. The command resolves all registered macros and generates a `_ide_macros.php` file which provides auto-completion for `Macroable` macros.

For example :

```
use Illuminate\Support\Collection;

Collection::macro('mapToUpper', function(): Collection {
    return $this->map(fn(string $item) => \Illuminate\Support\Str::upper($item));
});
```

Thanks to `_ide_macros.php` file, we have auto-completion for the `mapToUpper` method :

[![](docs/macro_autocomplete.png)](docs/macro_autocomplete.png)

Just like `_ide_models.php`, the `_ide_macros.php` file must not be included but only analyzed by your ide.

Phpstorm meta
-------------

[](#phpstorm-meta)

The command `php artisan next-ide-helper:meta` will generate a `.phpstorm.meta.php` file. It will provide completion for container bindings and some laravel helpers

[![](docs/optional_autocomplete.png)](docs/optional_autocomplete.png)[![](docs/app_autocomplete.png)](docs/app_autocomplete.png)

Factories
---------

[](#factories)

The command `php artisan next-ide-helper:factories` will add docblocks to your factories in order to correctly type some methods. It will also explicit magic methods for model relations.

For example, if you have

```
class User extends Model
{
    public function role(): BelongsTo
    {
        return $this->belongsTo(Role::class);
    }

    public function posts(): HasMany
    {
        return $this->hasMany(Post::class);
    }

    public function newCollection(array $models = [])
    {
        return new UserCollection($models);
    }
}
```

this command will generate the docblock in `UserFactory`:

```
/**
 * @method \App\User createOne($attributes = [])
 * @method \App\User|\App\Collections\UserCollection create($attributes = [], ?\Illuminate\Database\Eloquent\Model $parent = null)
 * @method \App\User makeOne($attributes = [])
 * @method \App\User|\App\Collections\UserCollection make($attributes = [], ?\Illuminate\Database\Eloquent\Model $parent = null)
 * @method \App\User newModel(array $attributes = [])
 * @method \Database\Factories\UserFactory forRole($attributes = [])
 * @method \Database\Factories\UserFactory hasPosts($count = 1, $attributes = [])
 * @extends \Illuminate\Database\Eloquent\Factories\Factory
 */
class UserFactory extends Factory
{
    //
}
```

Aliases
-------

[](#aliases)

Sometimes we don't want to use fully qualified class names but prefer to use Laravel aliases.

The command `php artisan next-ide-helper:aliases` will create a file which can be understood by your ide.

It will then provide auto-completion, syntax hightlight, ... for the aliases defined in your `config/app.php` file as well as the ones defined by the package you use.

Generate all
------------

[](#generate-all)

You can generate all next-ide-helper files using `next-ide-helper:all`.

It will generate for you :

- Models
- Macros
- Phpstorm meta
- Aliases
- Factories (if you are using Laravel 8 class based model factories)

Custom application bootstrap
----------------------------

[](#custom-application-bootstrap)

Sometimes you may want to bootstrap the environment before the command is executed. For example in a multi-tenant multi-database application, you need to bootstrap your tenant connection in order to let this package resolve table columns.

In that case, you just have to create your own bootstrapper and configure the package to use it :

```
class MultitenantBootstrapper implements \Soyhuce\NextIdeHelper\Contracts\Bootstrapper
{
    private Tenancy $tenancy;

    public function __construct(Tenancy $tenancy)
    {
        $this->tenancy = $tenancy;
    }

    public function bootstrap() : void
    {
        $tenant = \App\Tenant::firstOrFail();

        $this->tenancy->connect($tenant);
    }
}
// Note that this code is completely fictive.
```

Now, you just have to add it in you `next-ide-helper.php` config file :

```
'bootstrapper' => \App\Support\MultitenantBootstrapper::class,
```

Your bootstrapper benefits from laravel dependency injection in its constructor.

Custom content in docblock
--------------------------

[](#custom-content-in-docblock)

Some command will reset your docblock. If you want some content not to be erased, you must add a `@generated` tag in the docblock to tell nest-ide-helper where to insert its content.

For exemple,

```
/**
 * Comment that will not be overwritten after docblock generation
 *
 * @author John Doe
 * @package Foo Bar
 * @deprecated since 1.0.0
 * @api
 *
 * @generated
 * [the content generated by next-ide-helper will be inserted here]
 */
class SomeModel extends Model {}
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Bastien Philippe](https://github.com/bastien-phi)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 89.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.

### Community

Maintainers

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

---

Top Contributors

[![bastien-phi](https://avatars.githubusercontent.com/u/10199039?v=4)](https://github.com/bastien-phi "bastien-phi (245 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (11 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![ElRochito](https://avatars.githubusercontent.com/u/1737307?v=4)](https://github.com/ElRochito "ElRochito (7 commits)")[![edwinvdpol](https://avatars.githubusercontent.com/u/9265514?v=4)](https://github.com/edwinvdpol "edwinvdpol (2 commits)")[![a-long-way](https://avatars.githubusercontent.com/u/24518718?v=4)](https://github.com/a-long-way "a-long-way (1 commits)")[![karinarastsinskagia](https://avatars.githubusercontent.com/u/32904307?v=4)](https://github.com/karinarastsinskagia "karinarastsinskagia (1 commits)")

### Embed Badge

![Health badge](/badges/meioco3-next-ide-helper/health.svg)

```
[![Health](https://phpackages.com/badges/meioco3-next-ide-helper/health.svg)](https://phpackages.com/packages/meioco3-next-ide-helper)
```

###  Alternatives

[wa72/htmlpagedom

jQuery-inspired DOM manipulation extension for Symfony's Crawler

3383.9M34](/packages/wa72-htmlpagedom)[symfony/requirements-checker

Check Symfony requirements and give recommendations

2014.7M29](/packages/symfony-requirements-checker)[symfony/polyfill-intl-messageformatter

Symfony polyfill for intl's MessageFormatter class and related functions

393.9M21](/packages/symfony-polyfill-intl-messageformatter)[nosh2/nosh2

NOSH ChartingSystem.

771.2k](/packages/nosh2-nosh2)

PHPackages © 2026

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