Files
admin-php-module-core/app/Console/Commands/HRCInfo.php

23 lines
500 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(CORE_PATH . '/composer.json', true);
return [
'status' => 'success',
'version' => $info['version'] ?? '0.0',
'name' => $info['name'],
'is_release' => true
];
}
}