初始化

This commit is contained in:
2026-01-06 13:37:07 +08:00
parent c3435595fe
commit 00d7a381aa
70 changed files with 3913 additions and 1 deletions

12
tests/stub/think Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env php
<?php
use think\App;
require __DIR__ . '/../../vendor/autoload.php';
$app = new App(__DIR__);
$app->console->addCommands([\think\worker\command\Server::class]);
$app->console->run();