Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 40d6919

Browse files
committed
Install laravel-ide-helper
1 parent 883e1d5 commit 40d6919

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ out/
2424
## Do not try it :)
2525
_github.php
2626

27+
_ide_helper.php

composer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"alfredo-ramos/parsedown-extra-laravel": "~0.2",
1818
"rap2hpoutre/laravel-log-viewer": "0.2.*",
1919
"maatwebsite/excel": "~2.0.0",
20-
"nesbot/carbon": "~1.18"
20+
"nesbot/carbon": "~1.18",
21+
"barryvdh/laravel-ide-helper": "^2.0"
2122
},
2223
"require-dev": {
2324
"phpunit/phpunit": "~4.0",
@@ -43,6 +44,7 @@
4344
],
4445
"post-update-cmd": [
4546
"php artisan clear-compiled",
47+
"php artisan ide-helper:generate",
4648
"php artisan optimize"
4749
],
4850
"post-create-project-cmd": [

config/app.php

+2
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@
150150
'App\Providers\EventServiceProvider',
151151
'App\Providers\RouteServiceProvider',
152152

153+
//laravel-ide-helper
154+
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
153155
],
154156

155157
/*

0 commit comments

Comments
 (0)