bluedot / lookstar-kernel
1.9.7
2024-12-18 09:52 UTC
Requires
- php: ^8.1
- alibabacloud/devops-20210625: 2.1.6
- alibabacloud/dysmsapi-20170525: 2.0.23
- bluedot/composer: 3.6.4
- hubspot/api-client: ^8.4.1
- stancl/tenancy: ^3.7
- tencent-ad/marketing-api-php-sdk: ^1.1
Requires (Dev)
This package is auto-updated.
Last update: 2026-06-18 13:17:58 UTC
README
目录结构
遵循于 Laravel 最佳实践
├── config
├── database
├── resources
└── src
├── Application
│ ├── Analysis
│ ├── Auth
│ ├── Push
│ ├── System
│ ├── Tag
│ ├── User
│ └── WeChat
├── Composer.php
├── ComposerServiceProvider.php
├── Console
├── Exceptions
├── Http # HTTP 核心库
│ ├── BaseController.php # 基类公共控制器
│ ├── Controller.php # 公共控制器
│ ├── Kernel.php
│ ├── Middleware
│ │ ├── AuthOperationLog.php
│ │ ├── Authenticate.php
│ │ ├── AuthenticateAdmin.php
│ │ └── RequestLog.php
│ └── Traits
│ ├── PlatformBindUser.php
│ ├── Select.php
│ └── Validate.php
├── RouteRegistrar.php # 注入一些公共路由
├── Support # 第三方包
│ ├── Aip
│ ├── Aliyun
│ ├── Auth
│ ├── Captcha
│ ├── Crypt
│ ├── Database
│ ├── Excel
│ ├── Lookstar
│ ├── Mail
│ ├── Redis
│ └── Vhall.php
└── helpers.php