Я новичок в композиторе, и я пытаюсь установить эту следующую библиотеку через обновление композитора
https://github.com/neitanod/forceutf8
так как я понимаю мой composer.json выглядит так
{
"config": {
"vendor-dir": "libs/vendor"
},
"require": {
"raven/raven": "0.7.1",
"monolog/monolog": "1.7.*",
"smarty/smarty": "3.1.16",
"forceutf8/forceutf8": "master"
}
}
Bt по какой-то причине (я думаю, у forceutf8 нет версии) он останавливается с ошибкой, все остальные установлены правильно, ошибка, которую я получаю,
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 forceutf8/forceutf8 could not be found in any version, there may be a typo in the package na
me.
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.
я попробовал следующую версию тоже, но все равно не повезло
{
"config": {
"vendor-dir": "libs/vendor"
},
"name": "career/skillquest",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/neitanod/forceutf8"
}
],
"require":
{
"forceutf8/forceutf8": "dev-master",
"raven/raven": "0.7.1",
"monolog/monolog": "1.7.*",
"smarty/smarty": "3.1.16"
}
}
Проблема была, это должно быть
"neitanod/forceutf8": "dev-master"
НЕ
"forceutf8/forceutf8": "master"