扩展包

扩展包

  • 安装开发专用扩展包时 必须 使用 --dev 参数,如:
    composer require laracasts/generators --dev

  • 开发专用的 provider 绝不config/app.php 里面注册,必须 在 app/Providers/AppServiceProvider.php 文件中使用如以下方式:

public function register()
{
    if ($this->app->environment() == 'local') {
        $this->app->register('Laracasts\Generators\GeneratorsServiceProvider');
    }
}

你可能感兴趣的:(扩展包)