【发布时间】:2015-05-22 08:32:03
【问题描述】:
您好,作曲家的世界很新,我在将软件包安装到 symfony2 时遇到问题
有问题的包是:https://github.com/gridiron-guru/FantasyDataAPI
我的 composer.phar 如下所示:
{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.4.*",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~2.3",
"sensio/framework-extra-bundle": "~3.0",
"sensio/generator-bundle": "~2.3",
"incenteev/composer-parameter-handler": "~2.0",
"gridiron-guru/FantasyDataAPI" : "1.*"
},
"repositories": [ {
"type": "vcs",
"url": "https://github.com/gridiron-guru/FantasyDataAPI"
}],
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.4-dev"
}
}
}
当我运行时:php composer.phar 更新 我收到以下错误。
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested package gridiron-guru/fantasydataapi 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.
Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
在 Git Repo 上,唯一的分支是 master:带有以下标签:
1.0.0, 1.1.0, 1.2.0
我尝试过使用 dev-master 和不同的版本号。 但无济于事。
我可以分叉存储库,然后为我的分叉设置我自己的@stable 标签吗? 如何引用新的分叉?
这当然可能与版本无关,而是找不到包,尽管我认为在我的 composer.json 中应该解决这个问题:
"repositories": [ {
"type": "vcs",
"url": "https://github.com/gridiron-guru/FantasyDataAPI"
}],
我猜我不能只下载 src 并将其粘贴到我的供应商目录中,因为 composer 需要生成自动加载和其他 gubbins。
有什么想法可以尝试将这个包放入我的项目中吗?
【问题讨论】:
标签: php git symfony composer-php