Unverified Commit 3b705b4f authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #32 from trollid/master

JWT for laravel 5.5 refer to #31
parents edac1b83 687aaab2
...@@ -24,3 +24,4 @@ yarn-error.log ...@@ -24,3 +24,4 @@ yarn-error.log
phpunit.txt phpunit.txt
public/css public/css
public/js public/js
composer.lock
\ No newline at end of file
...@@ -48,7 +48,7 @@ Generate a new application key ...@@ -48,7 +48,7 @@ Generate a new application key
Generate a new JWT authentication secret key Generate a new JWT authentication secret key
php artisan jwt:generate php artisan jwt:secret
Run the database migrations (**Set the database connection in .env before migrating**) Run the database migrations (**Set the database connection in .env before migrating**)
......
...@@ -200,7 +200,7 @@ return [ ...@@ -200,7 +200,7 @@ return [
App\Providers\HistoryServiceProvider::class, App\Providers\HistoryServiceProvider::class,
App\Providers\MacroServiceProvider::class, App\Providers\MacroServiceProvider::class,
App\Providers\RouteServiceProvider::class, App\Providers\RouteServiceProvider::class,
Tymon\JWTAuth\Providers\JWTAuthServiceProvider::class, Tymon\JWTAuth\Providers\LaravelServiceProvider::class,
Bvipul\Generator\Provider\CrudGeneratorServiceProvider::class, Bvipul\Generator\Provider\CrudGeneratorServiceProvider::class,
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment