3

ここでFOSRestBundleのフォークを作成しましたRLovelett/FOSRestBundle にはブランチがありdev-411ます。Symfony2 プロジェクトで FOSRestBundle のフォークとブランチを使用したいと考えています。

これを試みるために、symfony2 プロジェクトに次composer.jsonのようにパッチを適用しました (full composer.json):

diff --git a/composer.json b/composer.json
index ec36007..19e82b5 100644
--- a/composer.json
+++ b/composer.json
@@ -23,7 +23,7 @@
         "jms/security-extra-bundle": "1.4.*",
         "jms/di-extra-bundle": "1.3.*",
         "jms/serializer-bundle": "0.12.x-dev",
-        "friendsofsymfony/rest-bundle": "0.11.*"
+        "friendsofsymfony/rest-bundle": "dev-411"
     },
     "scripts": {
         "post-install-cmd": [
@@ -42,12 +42,18 @@
     "config": {
         "bin-dir": "bin"
     },
-    "minimum-stability": "alpha",
+    "minimum-stability": "dev",
     "extra": {
         "symfony-app-dir": "app",
         "symfony-web-dir": "web",
         "branch-alias": {
             "dev-master": "2.2-dev"
         }
-    }
+    },
+    "repositories": [
+        {
+            "type": "vcs",
+            "url": "https://github.com/RLovelett/FOSRestBundle"
+        }
+    ]
 }

実行するcomposer updateと、次のエラー メッセージが表示されます。

Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

Problem 1
- The requested package friendsofsymfony/rest-bundle dev-411 could not be found.

Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.

Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.

構成の何が問題になっていますか?

4

2 に答える 2

2

dev-Composerはブランチ名に プレフィックスを付けて明確に識別できるようにするため、ブランチが である場合dev-411、そのコンポーザー バージョンは になりますdev-dev-411

于 2013-03-27T16:22:27.803 に答える
0

これを試して :"friendsofsymfony/rest-bundle": "0.11.dev-feature/411"

詳細はこちら: https://github.com/composer/composer/issues/935

于 2013-03-27T15:46:09.233 に答える