api-docs icon indicating copy to clipboard operation
api-docs copied to clipboard

2.0版本发布配置文件报错

Open lshaofan opened this issue 2 years ago • 1 comments

php bin/hyperf.php vendor:publish tangwei/apidocs 2.0版本报错下面的是什么轻快 There are no commands defined in the "vendor" namespace.

lshaofan avatar May 24 '22 06:05 lshaofan

修改文件 config/autoload/annotations.php

return [
    'scan' => [
        'paths' => [
            BASE_PATH . '/app',
        ],
        'ignore_annotations' => [
            'mixin',
           'required'
        ],
    ],
];

ignore_annotations 增加 required

tw2066 avatar Nov 07 '22 11:11 tw2066