21 lines
521 B
PHP
21 lines
521 B
PHP
<?php
|
||
/*
|
||
* Copyright (c) 2023.
|
||
*
|
||
* A.Сапаргалиев
|
||
* ТОО "Дизайн лаборатория А7"
|
||
* Астана
|
||
*/
|
||
|
||
namespace App\Modules\Auth\Commands;
|
||
|
||
use A7kz\Platform\Commands\InstallCommand;
|
||
|
||
class AuthInstallCommand extends InstallCommand
|
||
{
|
||
protected $signature = 'platform.auth:install {--install} {--upgrade} {--apps}';
|
||
protected $description = 'Модуль авторизации по email';
|
||
protected $module_name = 'platform.auth';
|
||
protected $module_version = '1.0.0';
|
||
}
|