2020-12-21
parents
Showing
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE.txt
0 → 100644
README.md
0 → 100644
app/.htaccess
0 → 100644
app/AppService.php
0 → 100644
app/BaseController.php
0 → 100644
app/ExceptionHandle.php
0 → 100644
app/Request.php
0 → 100644
app/api/controller/Base.php
0 → 100644
app/api/controller/Index.php
0 → 100644
app/api/model/Admin.php
0 → 100644
app/common.php
0 → 100644
app/event.php
0 → 100644
app/middleware.php
0 → 100644
app/provider.php
0 → 100644
app/service.php
0 → 100644
app/wuye/controller/Base.php
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "topthink/think", | |||
| "description": "the new thinkphp framework", | |||
| "type": "project", | |||
| "keywords": [ | |||
| "framework", | |||
| "thinkphp", | |||
| "ORM" | |||
| ], | |||
| "homepage": "http://thinkphp.cn/", | |||
| "license": "Apache-2.0", | |||
| "authors": [ | |||
| { | |||
| "name": "liu21st", | |||
| "email": "liu21st@gmail.com" | |||
| }, | |||
| { | |||
| "name": "yunwuxin", | |||
| "email": "448901948@qq.com" | |||
| } | |||
| ], | |||
| "require": { | |||
| "php": ">=7.1.0", | |||
| "topthink/framework": "^6.0.0", | |||
| "topthink/think-orm": "^2.0", | |||
| "topthink/think-multi-app": "^1.0", | |||
| "firebase/php-jwt": "^5.2" | |||
| }, | |||
| "require-dev": { | |||
| "symfony/var-dumper": "^4.2", | |||
| "topthink/think-trace":"^1.0" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "app\\": "app" | |||
| }, | |||
| "psr-0": { | |||
| "": "extend/" | |||
| } | |||
| }, | |||
| "config": { | |||
| "preferred-install": "dist" | |||
| }, | |||
| "scripts": { | |||
| "post-autoload-dump": [ | |||
| "@php think service:discover", | |||
| "@php think vendor:publish" | |||
| ] | |||
| } | |||
| } |
composer.lock
0 → 100644
config/app.php
0 → 100644
config/cache.php
0 → 100644
config/console.php
0 → 100644
config/cookie.php
0 → 100644
config/database.php
0 → 100644
config/filesystem.php
0 → 100644
config/lang.php
0 → 100644
config/log.php
0 → 100644
config/middleware.php
0 → 100644
config/route.php
0 → 100644
config/session.php
0 → 100644
config/trace.php
0 → 100644
config/view.php
0 → 100644
extend/.gitignore
0 → 100644
public/.htaccess
0 → 100644
public/favicon.ico
0 → 100644
1.12 KB
public/index.php
0 → 100644
public/robots.txt
0 → 100644
public/router.php
0 → 100644
public/static/.gitignore
0 → 100644
route/app.php
0 → 100644
runtime/.gitignore
0 → 100644
think
0 → 100644
view/README.md
0 → 100644