Skip to content

Commit 206f978

Browse files
author
Renato Marinho
committed
JWT package
1 parent 4ce66c2 commit 206f978

File tree

4 files changed

+426
-19
lines changed

4 files changed

+426
-19
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"require": {
2626
"php": ">=7.1",
2727
"laravel/framework": "5.4.*",
28+
"tymon/jwt-auth": "0.5.*",
2829
"phploc/phploc": "*",
2930
"intervention/image": "^2.3",
3031
"socialiteproviders/gitlab": "^3.0",
@@ -47,8 +48,7 @@
4748
"database"
4849
],
4950
"psr-4": {
50-
"GitScrum\\": "app/",
51-
"App\\": "app/"
51+
"GitScrum\\": "app/"
5252
}
5353
},
5454
"autoload-dev": {

composer.lock

Lines changed: 250 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203

204204
Barryvdh\Debugbar\ServiceProvider::class,
205205
Spatie\Fractal\FractalServiceProvider::class,
206+
Tymon\JWTAuth\Providers\JWTAuthServiceProvider::class,
206207
RenatoMarinho\LaravelMultiLanguage\MultiLanguageServiceProvider::class
207208

208209
],
@@ -236,7 +237,6 @@
236237
'Event' => Illuminate\Support\Facades\Event::class,
237238
'File' => Illuminate\Support\Facades\File::class,
238239
'Gate' => Illuminate\Support\Facades\Gate::class,
239-
'GitHub' => GrahamCampbell\GitHub\Facades\GitHub::class,
240240
'Hash' => Illuminate\Support\Facades\Hash::class,
241241
'Image' => Intervention\Image\Facades\Image::class,
242242
'Lang' => Illuminate\Support\Facades\Lang::class,

0 commit comments

Comments
 (0)