How to call firebase/php-jwt class in Laravel 5
After installing it via composer then
Add these two lines to your app.php
'J42\LaravelFirebase\LaravelFirebaseServiceProvider',
and
'Firebase' => 'J42\LaravelFirebase\LaravelFirebaseFacade'
Also don't forget to add the credentials in your config/database.php
Tip 1 :
You shall with the basic requests like Firebase::get('/my/path');
Here's the good resource to have a start with
Tip 2 : Here is the beautiful resource that you shall refer.