Martijn Ebbens
Martijn Ebbens

Reputation: 253

Laravel won't load class

I'm trying to use the following library, this. It all seems pretty use but doesn't seem to work for me. I've added the stuff the the composer.json and I also updated the app.php. Then I ran composer dump-autoload in the laravel directory.

I still seem to be getting the same error..

FatalErrorException in ProviderRepository.php line 146:
Class 'Invisnik\LaravelSteamAuth\SteamServiceProvider' not found

Upvotes: 0

Views: 285

Answers (1)

Odin Thunder
Odin Thunder

Reputation: 3547

Try to install this package by this command:

composer require invisnik/laravel-steam-auth

You will install the latest version of current package and update your composer.json, composer.lock and autoload files.

Upvotes: 4

Related Questions