in src/AwsServiceProvider.php [27:37]
public function boot()
{
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
$this->publishes(
[__DIR__.'/../config/aws_publish.php' => config_path('aws.php')],
'aws-config'
);
} elseif ($this->app instanceof LumenApplication) {
$this->app->configure('aws');
}
}