Skip to content

Commit

Permalink
fix publishes argument
Browse files Browse the repository at this point in the history
  • Loading branch information
scplay authored Sep 21, 2017
1 parent f23c61e commit e2d3a40
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/BosServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,17 @@ public function boot()
$this->publishes([
// 从本地指定目录复制到 laravel 的 config 目录
__DIR__.'/../src/config/bos.php' => config_path('bos.php'),
// 如指定 tag 名
// 可以使用 php artisan vendor:publish --tag=config 来单独复制 加上 --force 可强制覆盖原有文件
'config'
]);

],

// 如指定 tag 名
// 可以使用 php artisan vendor:publish --tag="bos-config" 来单独复制 加上 --force 可强制覆盖原有文件
// 也可以使用 php artisan vendor:publish --provider="ZeonWang\BaiduBosClient\BosServiceProvider"
'bos-config'
);

}



}
}

0 comments on commit e2d3a40

Please # to comment.