1 | <?php |
||
11 | class ComposerServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | use ConsoleTools; |
||
14 | |||
15 | /** |
||
16 | * The commands to be registered. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $commands = [ |
||
21 | PublishCommand::class => 'command.rinvex.composer.publish', |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function register() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function boot() |
||
44 | } |
||
45 |