karthick
karthick

Reputation: 1322

Installing not-stable enough packages with Laravel

I am trying to install pubsubhubbub/php-subscriber in laravel 5.1. While installing, I am facing a problem listed below.

Your requirements could not be resolved to an installable set of packages.

Problem 1

  • The requested package pubsubhubub/subscriber could not be found in any version, there may be a typo in the package name.

Potential causes:

I have no idea how to resolve this issue??

Upvotes: 1

Views: 135

Answers (1)

craig_h
craig_h

Reputation: 32704

There shouldn't be an issue with minimum-stability because that package has a stable release. I did notice however that it looks like there is a typo in the documentation and they have missed the last 'b' in 'hub', so it should be:

"require" : {"pubsubhubbub/subscriber": "*"}

or you can use:

composer require pubsubhubbub/subscriber

See: https://packagist.org/packages/pubsubhubbub/subscriber

Upvotes: 1

Related Questions