This commit is contained in:
Marcel Pociot
2020-06-16 01:05:19 +02:00
parent c59c279128
commit 76ff60f114
3 changed files with 2 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ use Illuminate\Console\Command;
class PublishCommand extends Command class PublishCommand extends Command
{ {
protected $signature = 'publish'; protected $signature = 'publish {--force}';
protected $description = 'Publish the expose configuration file'; protected $description = 'Publish the expose configuration file';
@@ -18,7 +18,7 @@ class PublishCommand extends Command
'config.php' 'config.php'
]); ]);
if (file_exists($configFile)) { if (! $this->option('force') && file_exists($configFile)) {
$this->error('Expose configuration file already exists at '.$configFile); $this->error('Expose configuration file already exists at '.$configFile);
return; return;
} }

View File

@@ -15,7 +15,6 @@
"exclude-composer-files": false, "exclude-composer-files": false,
"compression": "GZ", "compression": "GZ",
"compactors": [ "compactors": [
"KevinGH\\Box\\Compactor\\Php",
"KevinGH\\Box\\Compactor\\Json" "KevinGH\\Box\\Compactor\\Json"
] ]
} }

Binary file not shown.