123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Modules\WechatPlatform;
- use Catch\Support\Module\Installer as ModuleInstaller;
- use Modules\WechatPlatform\Providers\WechatPlatformServiceProvider;
- class Installer extends ModuleInstaller
- {
- protected function info(): array
- {
- // TODO: Implement info() method.
- return [
- 'title' => '微信公众号管理',
- 'name' => 'wechatPlatform',
- 'path' => 'wechatPlatform',
- 'keywords' => '微信公众号管理',
- 'description' => '微信公众号管理模块',
- "isApp" => true,
- 'provider' => WechatPlatformServiceProvider::class
- ];
- }
- protected function requirePackages(): void
- {
- // TODO: Implement requirePackages() method.
- }
- protected function removePackages(): void
- {
- // TODO: Implement removePackages() method.
- }
- }
|