на PHP композитор.ошибка обновления phar-опечатка в имени пакета
Я создал новый проект Symfony 2.1 и добавил пользовательский пакет, загруженный РЕПО SVN.
Теперь я пытаюсь обновить проект до Symfony 2.2, но в любое время я пытаюсь выполнить команду php ~/bin/composer.phar update
появляется следующее сообщение об ошибке:
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 custom/utils 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.
это Symfony 2.2 composer.json
:
{
"name": "symfony/framework-standard-edition",
"description": "The "Symfony Standard Edition" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"repositories": [
{
"type": "vcs",
"url": "svn+ssh://sources.de.ext/usr/local/svnroot/utils"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.2.*",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.1.*",
"symfony/swiftmailer-bundle": "2.2.*",
"symfony/monolog-bundle": "2.2.*",
"sensio/distribution-bundle": "2.2.*",
"sensio/framework-extra-bundle": "2.2.*",
"sensio/generator-bundle": "2.2.*",
"jms/security-extra-bundle": "1.4.*",
"jms/di-extra-bundle": "1.3.*",
"custom/utils": "*"
},
"scripts": {
"post-install-cmd": [
"SensioBundleDistributionBundleComposerScriptHandler::buildBootstrap",
"SensioBundleDistributionBundleComposerScriptHandler::clearCache",
"SensioBundleDistributionBundleComposerScriptHandler::installAssets",
"SensioBundleDistributionBundleComposerScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"SensioBundleDistributionBundleComposerScriptHandler::buildBootstrap",
"SensioBundleDistributionBundleComposerScriptHandler::clearCache",
"SensioBundleDistributionBundleComposerScriptHandler::installAssets",
"SensioBundleDistributionBundleComposerScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "alpha",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}
пользовательские utils имеют следующие composer.json
:
{
"name": "custom/utils",
"version": "1.0.0",
"description": "The Custom Libraries",
"autoload": {
"psr-0": {
"Blogo": "src/",
"WideImage": "lib/"
}
},
"require": {
"symfony/console": "2.*",
"symfony/yaml": "2.*"
}
}
может ли кто-нибудь помочь мне понять, что не так в новом 2.2 Symfony? Поскольку появляется это сообщение об ошибке только обновление Symfony 2.2.
1 ответов
попробуй composer update --verbose
или composer show custom/utils --verbose
. Оба покажут вам некоторые выходные данные о загрузке вашего репозитория SVN. Он должен указывать, какие версии загружены или нет.
Я думаю, что у вас есть dev-trunk
версия доступна, и если вам это потребуется, она, скорее всего, будет работать. Вы не должны указывать version: 1.0.0
в свой композитор.json, потому что composer считывает информацию о версии из тегов / ветвей в вашем VCS.