我现在正在做laravel 5.2蒸汽认证 我被关注了这个链接
https://github.com/invisnik/laravel-steam-auth## Heading ##
我在作曲家中出错了
"Invisnik\LaravelSteamAuth\SteamServiceProvider::class class not a found"
我在
中添加了composer.json文件 "invisnik/laravel-steam-auth": "2.*"
and composer install and then add
app.php
Invisnik\LaravelSteamAuth\SteamServiceProvider::class,
但会显示此错误
"Invisnik\LaravelSteamAuth\SteamServiceProvider::class class not a found"
如何解决此错误。
答案 0 :(得分:3)
您需要导入该类或通过添加向后斜杠
动态声明它\SteamServiceProvider
例如:
\SteamServiceProvider::method()
如果要添加新包,请确保运行以下composer命令来重新包装文件。
composer dump-autoload