I would like to use Composer to include the php readability git project. This is my composer.json
file:
{
"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"
}
}
The error I get is:
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.
This is my first time using Composer so it is likely my config is wrong!