1

In composer.json I entered "nex/yii2-datepicker" : "*" in require section and minimum stability is stable. Now I run composer update, then foll error is displayed

Loading composer repositories with package information 
Updating dependencies (including require-dev)
Content-Length mismatch
http://packagist.org could not be fully loaded, package information was loaded from the local cache and may be out of date

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

Problem 1 - The requested package nex/yii2-datepicker * is satisfiable by nex/yii2-datepicker[dev-master] but these conflict with your requirements or minimum-stability

DanielBarbarian
  • 5,093
  • 12
  • 35
  • 44
Questions
  • 69
  • 1
  • 12

1 Answers1

0

Replace in composer.json

"minimum-stability": "stable",

to

"minimum-stability": "dev",
"prefer-stable": true,
Slawka
  • 1