我在 Windows 上使用 symfony,并尝试按照官方文档中的说明配置 FOSUserBundle
当我运行时,php app/console doctrine:schema:update --force
我收到此消息:
Class 'FOS\UserBundle\FOSUserBundle' not found in app/AppKernel.php line 24;
我按照我的方式配置了 AppKernel.php:
public function registerBundles()
{
$bundles = array(
// The rest
new FOS\UserBundle\FOSUserBundle(),
);
return $bundles;
}
我的FOSUserBundle.php
文件位于vendor/friendsofsymfony/user-bundle/FOS/UserBundle