聚合服务端api1.0
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitignore
0 → 100644
.styleci.yml
0 → 100644
README.md
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Events/Event.php
0 → 100644
app/Events/ExampleEvent.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Dao/ChannelDao.php
0 → 100644
app/Http/Dao/GameDao.php
0 → 100644
app/Http/Dao/GameRoleDao.php
0 → 100644
app/Http/Dao/GameUserDao.php
0 → 100644
app/Http/Dao/LoginLogDao.php
0 → 100644
app/Http/Dao/OrderDao.php
0 → 100644
app/Http/Dao/SdkDao.php
0 → 100644
app/Http/Dto/BaseDto.php
0 → 100644
app/Http/helper.php
0 → 100644
app/Jobs/ExampleJob.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/Models/ChannelConfig.php
0 → 100644
app/Models/ChannelMaster.php
0 → 100644
app/Models/Game.php
0 → 100644
app/Models/GameConfig.php
0 → 100644
app/Models/GameRole.php
0 → 100644
app/Models/GameRoleLog.php
0 → 100644
app/Models/GameUser.php
0 → 100644
app/Models/LoginLog.php
0 → 100644
app/Models/Member.php
0 → 100644
app/Models/Order.php
0 → 100644
app/Models/RegisterLog.php
0 → 100644
app/User.php
0 → 100644
app/Utils/CommonFunc.php
0 → 100644
app/Utils/Enum.php
0 → 100644
app/Utils/Response.php
0 → 100644
app/Utils/Rsa.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "laravel/lumen", | ||
| "description": "The Laravel Lumen Framework.", | ||
| "keywords": ["framework", "laravel", "lumen"], | ||
| "license": "MIT", | ||
| "type": "project", | ||
| "require": { | ||
| "php": "^7.2.5", | ||
| "guzzlehttp/guzzle": "^7.5", | ||
| "illuminate/redis": "~7.0", | ||
| "laravel/lumen-framework": "^7.0", | ||
| "predis/predis": "^2.1", | ||
| "rmccue/requests": "^2.0" | ||
| }, | ||
| "require-dev": { | ||
| "fzaninotto/faker": "^1.9.1", | ||
| "mockery/mockery": "^1.3.1", | ||
| "phpunit/phpunit": "^8.5" | ||
| }, | ||
| "autoload": { | ||
| "classmap": [ | ||
| "database/seeds", | ||
| "database/factories" | ||
| ], | ||
| "psr-4": { | ||
| "App\\": "app/" | ||
| }, | ||
| "files": [ | ||
| "app/Http/helper.php" | ||
| ] | ||
| }, | ||
| "autoload-dev": { | ||
| "classmap": [ | ||
| "tests/" | ||
| ] | ||
| }, | ||
| "config": { | ||
| "preferred-install": "dist", | ||
| "sort-packages": true, | ||
| "optimize-autoloader": true | ||
| }, | ||
| "minimum-stability": "dev", | ||
| "prefer-stable": true, | ||
| "scripts": { | ||
| "post-root-package-install": [ | ||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
| ] | ||
| } | ||
| } |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
database/migrations/.gitkeep
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
resources/views/.gitkeep
0 → 100644
routes/web.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/ExampleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
Please register or sign in to comment