Files
admin-php-module-core/app/Console/Commands/HRCInfo.php
2021-01-27 16:59:16 +03:00

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
];
}
}