2017 © Pedro Peláez
 

library laravel-ide-helper

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

image

barryvdh/laravel-ide-helper

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

  • Monday, July 16, 2018
  • by Barryvdh
  • Repository
  • 278 Watchers
  • 6915 Stars
  • 9,174,538 Installations
  • PHP
  • 335 Dependents
  • 7 Suggesters
  • 707 Forks
  • 273 Open issues
  • 66 Versions
  • 9 % Grown

The README.md

IDE Helper Generator for Laravel

Tests Packagist License Latest Stable Version Total Downloads Fruitcake, (*1)

Complete PHPDocs, directly from the source, (*2)

This package generates helper files that enable your IDE to provide accurate autocompletion. Generation is done based on the files in your project, so they are always up-to-date., (*3)

The 3.x branch supports Laravel 10 and 11. For older version, use the 2.x releases., (*4)

Installation

Require this package with composer using the following command:, (*5)

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

[!NOTE]
If you encounter version conflicts with doctrine/dbal, please try: composer require --dev barryvdh/laravel-ide-helper --with-all-dependencies, (*6)

This package makes use of Laravels package auto-discovery mechanism, which means if you don't install dev dependencies in production, it also won't be loaded., (*7)

If for some reason you want manually control this: - add the package to the extra.laravel.dont-discover key in composer.json, e.g. json "extra": { "laravel": { "dont-discover": [ "barryvdh/laravel-ide-helper" ] } } - Add the following class to the providers array in config/app.php: php Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class, If you want to manually load it only in non-production environments, instead you can add this to your AppServiceProvider with the register() method: php public function register() { if ($this->app->isLocal()) { $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); } // ... }, (*8)

Note: Avoid caching the configuration in your development environment, it may cause issues after installing this package; respectively clear the cache beforehand via php artisan cache:clear if you encounter problems when running the commands, (*9)

Usage

Check out this Laracasts video for a quick introduction/explanation!, (*10)

Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice, (*11)

Automatic PHPDoc generation for Laravel Facades

You can now re-generate the docs yourself (for future updates), (*12)

php artisan ide-helper:generate

Note: bootstrap/compiled.php has to be cleared first, so run php artisan clear-compiled before generating., (*13)

This will generate the file _ide_helper.php which is expected to be additionally parsed by your IDE for autocomplete. You can use the config filename to change its name., (*14)

You can configure your composer.json to do this each time you update your dependencies:, (*15)

"scripts": {
    "post-update-cmd": [
        "Illuminate\\Foundation\\ComposerScripts::postUpdate",
        "@php artisan ide-helper:generate",
        "@php artisan ide-helper:meta"
    ]
},

You can also publish the config file to change implementations (ie. interface to specific class) or set defaults for --helpers., (*16)

php artisan vendor:publish --provider="Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider" --tag=config

The generator tries to identify the real class, but if it cannot be found, you can define it in the config file., (*17)

Some classes need a working database connection. If you do not have a default working connection, some facades will not be included. You can use an in-memory SQLite driver by adding the -M option., (*18)

If you use real-time facades in your app, those will also be included in the generated file using a @mixin annotation and extending the original class underneath the facade., (*19)

Note: this feature uses the generated real-time facades files in the storage/framework/cache folder. Those files are generated on-demand as you use the real-time facade, so if the framework has not generated that first, it will not be included in the helper file. Run the route/command/code first and then regenerate the helper file and this time the real-time facade will be included in it., (*20)

You can choose to include helper files. This is not enabled by default, but you can override it with the --helpers (-H) option. The Illuminate/Support/helpers.php is already set up, but you can add/remove your own files in the config file., (*21)

Automatic PHPDoc generation for macros and mixins

This package can generate PHPDocs for macros and mixins which will be added to the _ide_helper.php file., (*22)

But this only works if you use type hinting when declaring a macro., (*23)

Str::macro('concat', function(string $str1, string $str2) : string {
    return $str1 . $str2;
});

Automatic PHPDocs for models

If you don't want to write your properties yourself, you can use the command php artisan ide-helper:models to generate PHPDocs, based on table columns, relations and getters/setters., (*24)

Note: this command requires a working database connection to introspect the table of each model, (*25)

By default, you are asked to overwrite or write to a separate file (_ide_helper_models.php). You can write the comments directly to your Model file, using the --write (-W) option, or force to not write with --nowrite (-N)., (*26)

Alternatively using the --write-mixin (-M) option will only add a mixin tag to your Model file, writing the rest in (_ide_helper_models.php). The class name will be different from the model, avoiding the IDE duplicate annoyance., (*27)

Please make sure to back up your models, before writing the info., (*28)

Writing to the models should keep the existing comments and only append new properties/methods. It will not update changed properties/methods., (*29)

With the --reset (-R) option, the whole existing PHPDoc is replaced, including any comments that have been made., (*30)

php artisan ide-helper:models "App\Models\Post"
/**
 * App\Models\Post
 *
 * @property integer $id
 * @property integer $author_id
 * @property string $title
 * @property string $text
 * @property \Illuminate\Support\Carbon $created_at
 * @property \Illuminate\Support\Carbon $updated_at
 * @property-read \User $author
 * @property-read \Illuminate\Database\Eloquent\Collection|\Comment[] $comments
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Post newModelQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Post newQuery()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Post query()
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Post whereTitle($value)
 * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Post forAuthors(\User ...$authors)
 * …
 */

With the --write-mixin (-M) option, (*31)

/**
 * …
 * @mixin IdeHelperPost
 */

Model Directories

By default, models in app/models are scanned. The optional argument tells what models to use (also outside app/models)., (*32)

php artisan ide-helper:models "App\Models\Post" "App\Models\User"

You can also scan a different directory, using the --dir option (relative from the base path):, (*33)

php artisan ide-helper:models --dir="path/to/models" --dir="app/src/Model"

You can publish the config file (php artisan vendor:publish) and set the default directories., (*34)

Ignore Models

Models can be ignored using the --ignore (-I) option, (*35)

php artisan ide-helper:models --ignore="App\Models\Post,App\Models\User"

Or can be ignored by setting the ignored_models config, (*36)

'ignored_models' => [
    App\Post::class,
    Api\User::class
],

Magic where* methods

Eloquent allows calling where<Attribute> on your models, e.g. Post::whereTitle(…) and automatically translates this to e.g. Post::where('title', '=', '…')., (*37)

If for some reason it's undesired to have them generated (one for each column), you can disable this via config write_model_magic_where and setting it to false., (*38)

Magic *_count properties

You may use the ::withCount method to count the number results from a relationship without actually loading them. Those results are then placed in attributes following the <columname>_count convention., (*39)

By default, these attributes are generated in the phpdoc. You can turn them off by setting the config write_model_relation_count_properties to false., (*40)

Generics annotations

Laravel 9 introduced generics annotations in DocBlocks for collections. PhpStorm 2022.3 and above support the use of generics annotations within @property and @property-read declarations in DocBlocks, e.g. Collection<User> instead of Collection|User[]., (*41)

These can be disabled by setting the config use_generics_annotations to false., (*42)

Support @comment based on DocBlock

In order to better support IDEs, relations and getters/setters can also add a comment to a property like table columns. Therefore a custom docblock @comment is used:, (*43)

class Users extends Model
{
    /**
     * @comment Get User's full name
     *
     * @return string
     */
    public function getFullNameAttribute(): string
    {
        return $this->first_name . ' ' .$this->last_name ;
    }
}

// => after generate models

/**
 * App\Models\Users
 * 
 * @property-read string $full_name Get User's full name
 * …
 */

Dedicated Eloquent Builder methods

A new method to the eloquent models was added called newEloquentBuilder Reference where we can add support for creating a new dedicated class instead of using local scopes in the model itself., (*44)

If for some reason it's undesired to have them generated (one for each column), you can disable this via config write_model_external_builder_methods and setting it to false., (*45)

Custom Relationship Types

If you are using relationships not built into Laravel you will need to specify the name and returning class in the config to get proper generation., (*46)

'additional_relation_types' => [
    'externalHasMany' => \My\Package\externalHasMany::class
],

Found relationships will typically generate a return value based on the name of the relationship., (*47)

If your custom relationships don't follow this traditional naming scheme you can define its return type manually. The available options are many and morphTo., (*48)

'additional_relation_return_types' => [
    'externalHasMultiple' => 'many'
],

Model Hooks

If you need additional information on your model from sources that are not handled by default, you can hook in to the generation process with model hooks to add extra information on the fly. Simply create a class that implements ModelHookInterface and add it to the model_hooks array in the config:, (*49)

```php 'model_hooks' => [ MyCustomHook::class, ],, (*50)


The `run` method will be called during generation for every model and receives the current running `ModelsCommand` and the current `Model`, e.g.: ```php class MyCustomHook implements ModelHookInterface { public function run(ModelsCommand $command, Model $model): void { if (! $model instanceof MyModel) { return; } $command->setProperty('custom', 'string', true, false, 'My custom property'); $command->unsetMethod('method'); $command->setMethod('method', $command->getMethodType($model, '\Some\Class'), ['$param']); } }
/**
 * MyModel
 *
 * @property integer $id
 * @property-read string $custom

Automatic PHPDocs generation for Laravel Fluent methods

If you need PHPDocs support for Fluent methods in migration, for example, (*51)

$table->string("somestring")->nullable()->index();

After publishing vendor, simply change the include_fluent line in your config/ide-helper.php file into:, (*52)

'include_fluent' => true,

Then run php artisan ide-helper:generate, you will now see all Fluent methods recognized by your IDE., (*53)

Auto-completion for factory builders

If you would like the factory()->create() and factory()->make() methods to return the correct model class, you can enable custom factory builders with the include_factory_builders line in your config/ide-helper.php file. Deprecated for Laravel 8 or latest., (*54)

'include_factory_builders' => true,

For this to work, you must also publish the PhpStorm Meta file (see below)., (*55)

PhpStorm Meta for Container instances

It's possible to generate a PhpStorm meta file to add support for factory design pattern. For Laravel, this means we can make PhpStorm understand what kind of object we are resolving from the IoC Container. For example, events will return an Illuminate\Events\Dispatcher object, so with the meta file you can call app('events') and it will autocomplete the Dispatcher methods., (*56)

php artisan ide-helper:meta
app('events')->fire();
\App::make('events')->fire();

/** @var \Illuminate\Foundation\Application $app */
$app->make('events')->fire();

// When the key is not found, it uses the argument as class name
app('App\SomeClass');
// Also works with
app(App\SomeClass::class);

Note: You might need to restart PhpStorm and make sure .phpstorm.meta.php is indexed., (*57)

Note: When you receive a FatalException: class not found, check your config ., (*58)

You can change the generated filename via the config meta_filename. This can be useful for cases where you want to take advantage of PhpStorm's support of the directory .phpstorm.meta.php/: all files placed there are parsed, should you want to provide additional files to PhpStorm., (*59)

License

The Laravel IDE Helper Generator is open-sourced software licensed under the MIT license, (*60)

The Versions

16/07 2018

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

08/02 2018

dev-revert-624-Fix/623

dev-revert-624-Fix/623

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

08/02 2018

v2.4.3

2.4.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

07/02 2018

v2.4.2

2.4.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

31/01 2018

1.11.x-dev

1.11.9999999.9999999-dev

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

16/07 2017

v2.4.1

2.4.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

16/06 2017

v2.4.0

2.4.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

22/02 2017

v2.3.2

2.3.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

20/02 2017

v2.3.1

2.3.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

13/02 2017

v2.3.0

2.3.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

05/01 2017

v2.2.3

2.2.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

15/11 2016

v2.2.2

2.2.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

04/07 2016

v2.2.1

2.2.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

13/06 2016

v2.2.0

2.2.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

03/03 2016

v2.1.4

2.1.4.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

02/03 2016

v2.1.3

2.1.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

21/01 2016

dev-revert-303-master

dev-revert-303-master

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

21/12 2015

v2.1.2

2.1.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

14/12 2015

v2.1.1

2.1.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

13/08 2015

v2.1.0

2.1.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

25/06 2015

v2.0.6

2.0.6.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

11/06 2015

v2.0.5

2.0.5.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

08/06 2015

v2.0.4

2.0.4.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

17/03 2015

v2.0.3

2.0.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

16/03 2015

v1.11.6

1.11.6.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

16/03 2015

v1.11.5

1.11.5.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

16/03 2015

v2.0.2

2.0.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

23/02 2015

v2.0.1

2.0.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

04/02 2015

v1.11.4

1.11.4.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

04/02 2015

v1.9.3

1.9.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

04/02 2015

v2.0.0

2.0.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

26/08 2014

v1.11.3

1.11.3.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

12/08 2014

v1.11.2

1.11.2.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

11/08 2014

v1.11.1

1.11.1.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

09/08 2014

v1.11.0

1.11.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel helper phpdoc autocomplete ide phpstorm netbeans sublime codeintel

29/06 2014

v1.10.0

1.10.0.0

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

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

25/04 2014

v1.9.2

1.9.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

20/03 2014

v1.9.1

1.9.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

18/03 2014

v1.9.0

1.9.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

29/01 2014

v1.8.1

1.8.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

06/12 2013

v1.8.0

1.8.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

18/10 2013

v1.7.1

1.7.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

25/08 2013

v1.7.0

1.7.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

08/08 2013

v1.6.1

1.6.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

08/08 2013

v1.7.2

1.7.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

08/08 2013

v1.6.0

1.6.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

12/07 2013

v1.5.2

1.5.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

04/07 2013

v1.5.1

1.5.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

02/07 2013

v1.5.0

1.5.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

23/06 2013

v1.4.0

1.4.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

18/06 2013

v1.3.2

1.3.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

09/06 2013

v1.3.1

1.3.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

08/06 2013

v1.3.0

1.3.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

07/06 2013

v1.2.1

1.2.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

06/06 2013

v1.2.0

1.2.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

04/06 2013

v1.1.3

1.1.3.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.1.2

1.1.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.1.1

1.1.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.0.4

1.0.4.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.1.0

1.1.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.0.3

1.0.3.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

30/05 2013

v1.0.2

1.0.2.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

29/05 2013

v1.0.1

1.0.1.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

28/05 2013

v1.0.0

1.0.0.0

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

  Sources   Download

MIT

The Requires

 

laravel phpdoc autocomplete phpstorm netbeans sublime codeintel

27/05 2013

v1.0.0-beta2

1.0.0.0-beta2

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

  Sources   Download

The Requires

 

23/05 2013

v1.0.0-beta1

1.0.0.0-beta1

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

  Sources   Download

The Requires