Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not working on local development #447

Closed
Tropicalista opened this issue Feb 4, 2015 · 6 comments
Closed

Not working on local development #447

Tropicalista opened this issue Feb 4, 2015 · 6 comments

Comments

@Tropicalista
Copy link

If I add generators to local providers app crashes, simply commented out the generators class all works perfectly.

'providers' => array(


    'Barryvdh\Debugbar\ServiceProvider', // Debugger
    //'Way\Generators\GeneratorsServiceProvider', // Generator

), 
@mikeerickson
Copy link

What version of Laravel are you using?

If L5, it is currently not working.

@jasonherndon
Copy link

I'm running into the same problem as well. Is that what the "Build:error" tag on the front of the github page is for?

@Tropicalista
Copy link
Author

I'm on laravel 4.2. I use confide and entrust, not sure if there is some conflicts...

@daltonamitchell
Copy link

Having the same issue. It looks like the boot() method is failing in the Service Provider

    /**
     * Booting
     */
    public function boot()
    {
        $this->package('way/generators');
    }

Looks like Illuminate\Support\ServiceProvider no longer has a package() reference so I changed to $this->app->package('way/generators') as a temp fix. I just started a new L5 today. I wonder if this is a bug from a recent change.

_UPDATE_

Artisan doesn't crash but package commands don't seem to be present in artisan. I'll try to do some more digging tomorrow.

@pandasauce
Copy link

This is a duplicate of #433 #436 #437 #444

No permanent solution as of yet.

@phirschybar
Copy link

I think $this->package() is not needed any more. At least it is no longer in the Laravel docs. The boot() method seems to be only for publishing assets, migration files, public files, config files, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants