7

我刚刚迁移到 Symfony 2.1,但我不明白,如何使用 Composer 安装我自己的包?

在 2.0.x 中这很容易deps

[MyOwnBundle]
  git=git@git.weboshin.ru:weboshin_cms_bundle.git
  target=/bundles/My/OwnBundle

之后我就触发bin/vendors update了,就是这样!

但是现在没有deps文件了,我应该用 Composer 来做所有的事情。请给我任何提示。

4

2 回答 2

6

我找到了答案。

// my_project/compose.json:
{
    "repositories": [
        {
            "type": "vcs",
            "url": "own_repository_url"
        }
    ],

    // ...

    "require": {
        // ...
        "own/bundle": "dev-master"
    }
},

 

// own_repository/own_bundle/compose.json:
{
    "name": "own/bundle"
}
于 2012-08-23T01:14:59.370 回答
5

将 composer.json 文件添加到您的包中。例如,我的其中一个捆绑包有这个:

{
    "name":        "cg/kint-bundle",
    "type":        "symfony-bundle",
    "description": "This bundle lets you use the Kint function in your Twig templates. Kint is a print_r() replacement which produces a structured, collapsible and escaped output",
    "keywords":    ["kint", "debug", "symfony", "bundle", "twig"],
    "homepage":    "http://github.com/barelon/CgKintBundle",
    "license":     "MIT",

    "authors": [
        {
            "name": "Carlos Granados",
            "homepage": "http://github.com/barelon"
        },
        {
            "name": "Symfony Community",
            "homepage": "http://github.com/barelon/CgKintBundle"
        }
    ],

    "require": {
        "php":                      ">=5.3.2",
        "symfony/framework-bundle": ">=2.0.0",
        "raveren/kint":             "dev-master"
    },

    "minimum-stability": "dev",

    "autoload": {
        "psr-0": {
            "Cg\\KintBundle": ""
        }
    },

    "target-dir": "Cg/KintBundle"
}

然后将你的包添加到packagist.org。这很简单,基本上你只需要提供你的 git 地址,剩下的就交给它了。

一旦你的包在 packagist 中可用,那么只需将它作为依赖项添加到你的 symfony 项目的 composer.json 文件中。就我而言,我有:

"require": {
    ....
    "cg/kint-bundle": "*"
},

然后在你的 symfony 目录中运行“composer update”就可以了!您甚至不需要更新自动加载文件,composer 会为您完成。剩下的唯一事情就是在 appkernel.php 中加载包

于 2012-08-22T16:03:20.530 回答