123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Modules\DuanJu;
- use Catch\Support\Module\Installer as ModuleInstaller;
- use Modules\DuanJu\Providers\DuanJuServiceProvider;
- class Installer extends ModuleInstaller
- {
- protected function info(): array
- {
- // TODO: Implement info() method.
- return [
- 'title' => '短剧',
- 'name' => 'DuanJu',
- 'path' => 'DuanJu',
- 'keywords' => '短剧',
- 'description' => '短剧模块',
- 'provider' => DuanJuServiceProvider::class
- ];
- }
- protected function requirePackages(): void
- {
- // TODO: Implement requirePackages() method.
- }
- protected function removePackages(): void
- {
- // TODO: Implement removePackages() method.
- }
- }
|