我在TYPO3调度程序中看不到CommandController命令

时间:2018-02-23 05:20:58

标签: composer-php typo3

我使用TYPO3 8.10我创建了一个使用调度程序的扩展。在ext_localconf.php中我写了

$ GLOBALS [' TYPO3_CONF_VARS'] [' SC_OPTIONS'] [' extbase'] [' commandControllers'] [] =&# 39;的Myvendor \ MeExt \命令\ ImportCommandController&#39 ;;

如果系统构建没有作曲家,我会看到" CommandController命令"在调度程序中。如果使用作曲家进行系统构建,我就不会看到所需的命令。

在composer.json中我写了

"autoload" : {
  "psr-4" : {
    "MyVendor\\MyExt\\" : "path/typo3conf/ext/my_ext/Classes"
    }
}

1 个答案:

答案 0 :(得分:1)

我做完之后

composer dump-autoload -a

所有课程都可见。