sergeymakinen/laravel-phpstorm-stubs
Laravel PhpStorm autocomplete stubs
Maintainers
Package info
github.com/sergeymakinen/laravel-phpstorm-stubs
pkg:composer/sergeymakinen/laravel-phpstorm-stubs
Requires
- laravel/framework: ^5.1
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT b145703744ab924099bebe62a82a6efa91154a96
- Sergey Makinen <sergey.woop@makinen.ru>
stubautocompletelaravelstubsphpstormauto-completelaravel-phpstorm-stubs
README
Stubs for PhpStorm (may be for some other IDEs as well) to get a code completion working for Laravel facades, Query/Eloquent builders. Requires Laravel 5.1 or higher.
👁 Packagist Version
👁 Total Downloads
👁 Software License
Installation
The preferred way to install this extension is through composer.
Either run
composer require "sergeymakinen/laravel-phpstorm-stubs:^1.0"
or add
"sergeymakinen/laravel-phpstorm-stubs": "^1.0"
to the require section of your composer.json file.
Notes
If you got no code completion on Eloquent models, add a Model mixin tag, see an example:
namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract; /** * @mixin Model */ class User extends Model implements AuthenticatableContract, CanResetPasswordContract { // ... }
Have fun!
