sync
Showing
.gitignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
app/functions.php
0 → 100644
app/model/Test.php
0 → 100644
app/view/index/view.html
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "workerman/webman", | ||
| "type": "project", | ||
| "keywords": [ | ||
| "high performance", | ||
| "http service" | ||
| ], | ||
| "homepage": "https://www.workerman.net", | ||
| "license": "MIT", | ||
| "description": "High performance HTTP Service Framework.", | ||
| "authors": [ | ||
| { | ||
| "name": "walkor", | ||
| "email": "walkor@workerman.net", | ||
| "homepage": "https://www.workerman.net", | ||
| "role": "Developer" | ||
| } | ||
| ], | ||
| "support": { | ||
| "email": "walkor@workerman.net", | ||
| "issues": "https://github.com/walkor/webman/issues", | ||
| "forum": "https://wenda.workerman.net/", | ||
| "wiki": "https://workerman.net/doc/webman", | ||
| "source": "https://github.com/walkor/webman" | ||
| }, | ||
| "require": { | ||
| "php": ">=7.2", | ||
| "workerman/webman-framework": "^1.5.0", | ||
| "monolog/monolog": "^2.0", | ||
| "illuminate/database": "^8.83" | ||
| }, | ||
| "suggest": { | ||
| "ext-event": "For better performance. " | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "": "./", | ||
| "app\\": "./app", | ||
| "App\\": "./app", | ||
| "app\\View\\Components\\": "./app/view/components" | ||
| }, | ||
| "files": [ | ||
| "./support/helpers.php" | ||
| ] | ||
| }, | ||
| "scripts": { | ||
| "post-package-install": [ | ||
| "support\\Plugin::install" | ||
| ], | ||
| "post-package-update": [ | ||
| "support\\Plugin::install" | ||
| ], | ||
| "pre-package-uninstall": [ | ||
| "support\\Plugin::uninstall" | ||
| ] | ||
| } | ||
| } |
composer.lock
0 → 100644
This diff is collapsed.
config/app.php
0 → 100644
config/autoload.php
0 → 100644
config/bootstrap.php
0 → 100644
config/container.php
0 → 100644
config/database.php
0 → 100644
config/dependence.php
0 → 100644
config/exception.php
0 → 100644
config/log.php
0 → 100644
config/middleware.php
0 → 100644
config/process.php
0 → 100644
config/redis.php
0 → 100644
config/route.php
0 → 100644
config/server.php
0 → 100644
config/session.php
0 → 100644
config/static.php
0 → 100644
config/translation.php
0 → 100644
config/view.php
0 → 100644
process/Monitor.php
0 → 100644
public/404.html
0 → 100644
public/favicon.ico
0 → 100644
4.19 KB
runtime/.gitignore
0 → 100644
runtime/logs/.gitignore
0 → 100644
runtime/views/.gitignore
0 → 100644
start.php
0 → 100644
support/Request.php
0 → 100644
support/Response.php
0 → 100644
support/bootstrap.php
0 → 100644
support/helpers.php
0 → 100644
This diff is collapsed.
syncClearing.php
0 → 100644
windows.bat
0 → 100644
windows.php
0 → 100644