phpvms/app/Console/Commands/Version.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Console\Commands;
use App\Console\Command;
use App\Services\VersionService;
use Symfony\Component\Yaml\Yaml;
/**
* Class Version
*/
class Version extends Command
{
protected $signature = 'phpvms:version {--write} {--base-only}';
private $versionSvc;
public function __construct(VersionService $versionSvc)
{
parent::__construct();
$this->versionSvc = $versionSvc;
}
/**
* Run dev related commands
2018-08-27 00:40:04 +08:00
*
* @throws \Symfony\Component\Yaml\Exception\ParseException
*/
public function handle()
{
// Write the updated build number out to the file
if ($this->option('write')) {
$version_file = config_path('version.yml');
$cfg = Yaml::parse(file_get_contents($version_file));
$build_number = $this->versionSvc->getBuildId($cfg);
$cfg['build']['number'] = $build_number;
file_put_contents($version_file, Yaml::dump($cfg, 4, 2));
}
$version = $this->versionSvc->getCurrentVersion(!$this->option('base-only'));
2018-08-27 00:40:04 +08:00
echo $version."\n";
}
}