jwt.php 在 laravel 5.4 的配置文件夹中不可见

jwt.php not visible in config folder of laravel 5.4

我已成功配置并使一切正常运行。但是我有一个问题,我想更改生存时间但是在我的项目中 "jwt.php" 没有出现在配置文件夹中。

有知道解决办法的请指教;帮助将不胜感激。 非常感谢!

这可能是因为您还没有发布供应商文件。

你应该运行:

php artisan config:publish tymon/jwt-auth

假设您使用 https://github.com/tymondesigns/jwt-auth 包发布配置文件,那么您将创建 jwt.php 然后您可以根据需要更新配置

发布供应商文件,Laravel 5.5,运行

php artisan vendor:publish --tag=config