1

我正在使用最新的 Symfony - 2.3

我正在尝试安装 SonataAdminBundles .. 在教程中说 - 将其添加到 deps 文件中。

[SonataAdminBundle]
    git=http://github.com/sonata-project/SonataAdminBundle.git
    target=/bundles/Sonata/AdminBundle

[SonataDoctrineORMAdminBundle]
    git=http://github.com/sonata-project/SonataDoctrineORMAdminBundle.git
    target=/bundles/Sonata/DoctrineORMAdminBundle

[SonatajQueryBundle]
    git=http://github.com/sonata-project/SonatajQueryBundle.git
    target=/bundles/Sonata/jQueryBundle

[KnpMenuBundle]
    git=https://github.com/KnpLabs/KnpMenuBundle.git
    target=/bundles/Knp/Bundle/MenuBundle

[KnpMenu]
    git=https://github.com/KnpLabs/KnpMenu.git
    target=/knp/menu

我读到这个版本没有deps文件,现在有composer.json,但是当我打开composer.json时,我看到还有另一种语法。

我应该如何通过作曲家安装这个包?

谢谢

4

1 回答 1

0

是的,您应该尽可能使用 composer 安装依赖项。这是推荐的方式。

symfony的2.3版本不再包含该bin/vendors脚本,因为 composer 提供了一种解决依赖关系的可靠方法。

您只需将以下内容添加到项目的require配置中,composer.json然后运行composer update -o,即可通过 composer 获取依赖项:

"require": { 
    "...",
    "sonata-project/doctrine-orm-admin-bundle": "2.2.7",
}

sonata-project/doctrine-orm-admin-bundle具有依赖关系,而依赖sonata-project/admin-bundle关系又具有依赖关系sonata-project/jquery-bundleknplabs/knp-menu-bundle(它本身具有依赖关系knplabs/knp-menu)。

Composer 将自动获取所有需要的依赖项。

于 2013-10-30T10:10:15.347 回答