Ich möchte Composer verwenden, um das Projekt php readability git einzuschließen. Das ist meine composer.json
Datei:Composer verwenden, um Github-Repo mit Kohana zu erhalten, schlägt fehl: "angefordertes Paket konnte nicht gefunden werden"
{
"repositories": [
{
"type": "package",
"package": {
"name": "php-readability/php-readability",
"version": "master",
"source": {
"url": "https://github.com/feelinglucky/php-readability.git",
"type": "git",
"reference": "branches/master"
}
}
}
],
"require": {
"php-readability/php-readability": "master"
}
}
Der Fehler, den ich bekommen ist:
Problem 1
- The requested package php-readability/php-readability master 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 min
imum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> f
or more details.
Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common
problems.
Dies ist mein erstes Mal Composer so ist es wahrscheinlich meine Config ist falsch!
Danke, Mann !!!! –