23 lines
519 B
PHP
23 lines
519 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
class HRCInfo extends HRCCommand implements HRCCommandInterface
|
|
{
|
|
protected $signature = 'info';
|
|
|
|
public function command($input, $output = null)
|
|
{
|
|
$info = json_decode(file_get_contents(CORE_PATH . '/composer.json'), true);
|
|
|
|
return [
|
|
'status' => 'success',
|
|
'version' => $info['version'] ?? '0.0',
|
|
'name' => $info['name'],
|
|
'is_release' => true
|
|
];
|
|
}
|
|
}
|