Quick Tip: Develop Laravel 5 Packages the Laravel 4 Way

Originally published at: http://www.sitepoint.com/quick-tip-develop-laravel-5-packages-laravel-4-way/

Laravel 5 is out, and you may have noticed that the old package development procedure has changed. In this quick tip we will see how we can bring the joy of package development as it was before Laravel 5 to the latest release.

Continue reading this article on SitePoint

You need the following snippet in bootstrap/autoload.php to make it finally work:

if (is_dir($workbench = __DIR__.'/../workbench'))
{
    Illuminate\Workbench\Starter::start($workbench);
}

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.