我正在创建一个托管在GitHub 上的Symfony2包。我想一切都配置得很好!但是,当我尝试安装它时出现问题。
以下是关键信息的摘要。
首先,在我的 Symfony2 应用程序中,我更新composer.json
如下:
"require": {
...,
"bundle-name": "dev-master"
},
当我尝试通过命令安装捆绑包时php composer.phar update
,出现以下错误:
加载包含包信息的作曲家存储库 安装依赖项 您的需求无法解析为一组可安装的包。
Problem 1
- The requested package bundle-name could
not be found in any version, there may be a typo in the package name.
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.
任何的想法?