简体   繁体   中英

ServiceProvider not found Laravel 5.0

I'm trying to create a custom package for Laravel 5.0 based on this tutorials

The folder structure and service providers are exactly same, but some how the Serviceprovider is not updating autoload_namespace.php.

I already added my service provider in app/config.php

'Walkswithme\Users\UsersServiceProvider',

In my root composer.json I have following code.

"psr-4": {
        "App\\": "app/",
        "Walkswithme\\Users\\": "packages/walkswithme/users/src"
    }

Under my packages folder files struture is as follows.

 walkswithme
    users
      src
         models
         controllers
         views
         UsersServiceProvider.php
         routes.php 
      composer.json

I can't use Laravel 5.1 it requires php 5.5.9 , Other wise I can user artisan packager command.

The error is getting is as follows.

 [Symfony\Component\Debug\Exception\FatalErrorException]   
  Class 'Walkswithme\Users\UsersServiceProvider' not found  

Any help will be appreciated last 3hrs I'm digging on it.

I solved it myself ,

I tried composer dumpautoload -o so it works for me.

Also some time needs composer clearcache too.

Hope it helps someone else..

For me it was

Class 'Jubeki\LaravelCodeStyle\ServiceProvider' not found 

And I just run

composer require jubeki/laravel-code-style --dev

In another folder (not where my common composer.json is located)

Maybe it also can help someone :)

Just check the place of the new bundle installation folder.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM