45 lines
994 B
PHP
45 lines
994 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Commands;
|
||
|
|
||
|
use App\Console\Command;
|
||
|
use Artisan;
|
||
|
|
||
|
/**
|
||
|
* Class ComposerCommand
|
||
|
* @package App\Console\Commands
|
||
|
*/
|
||
|
class ComposerCommand extends Command
|
||
|
{
|
||
|
protected $signature = 'phpvms:composer {cmd}';
|
||
|
protected $description = 'Composer related tasks';
|
||
|
|
||
|
/**
|
||
|
* Run composer update related commands
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
switch(trim($this->argument('cmd')))
|
||
|
{
|
||
|
case 'post-update':
|
||
|
$this->postUpdate();
|
||
|
break;
|
||
|
default:
|
||
|
$this->error('Command exists');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Any composer post update tasks
|
||
|
*/
|
||
|
protected function postUpdate(): void
|
||
|
{
|
||
|
if (config('app.env') === 'dev') {
|
||
|
if (class_exists(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class)) {
|
||
|
Artisan::call('ide-helper:generate');
|
||
|
Artisan::call('ide-helper:meta');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|