查看命令列表
php bin/hyperf.php
啟動hyperf服務
php bin/hyperf.php start
生成控制器
php bin/hyperf.php gen:Controller UserController
添加注解
use Hyperf\HttpServer\Annotation\AutoController;
/**
* @AutoController()
*/
訪問
curl 118.195.173.53:9501/user/index
生成Model
php bin/hyperf.php gen:model User
生成監聽器
php bin/hyperf.php gen:listener RegisterListener
生成表單驗證器
php bin/hyperf.php gen:request UserForm
生成配置文件
php bin/hyperf.php vendor:publish hyperf/view