0

在学习 Symfony2 时,我找不到任何可以告诉我如何安装学说扩展库的资源。我知道我应该添加

new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),

到我的 AppKernel.php,但是作曲家呢?我安装时总是使用它,例如。DoctrineFixtures,但我不知道在这种情况下我需要添加什么。我试过

"gedmo/doctrine-extensions" : "master-dev",

php composer.phar update返回 php FatalError:

PHP Fatal error:  Class 'Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle' not found in /path/to/my/symfony/project/app/AppKernel.php on line 20
Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache handling the post-update-cmd event terminated with an exception
4

1 回答 1

2

"stof/doctrine-extensions-bundle": "1.1.0"如果你想使用那个包,你应该通过 composer 安装。

gedmo/doctrine-extensions是 PHP 库,而不是 symfony 包

当您想知道要安装什么、搜索 lib 或 bundle 时,只需使用 packagist.org

https://packagist.org/search/?q=StofDoctrineExtensionsBundle

于 2014-08-24T12:12:05.353 回答