I can not get Moltin Laravel Cart to install

composer-php, laravel-4, php

Solution

Change

minimum-stability: 'stable' to minimum-stability: 'dev'

Then after

minimum-stability: 'dev'

just add

"prefer-stable": true

like such:

"minimum-stability": "dev",
"prefer-stable": true

Problem

I can not get Moltin Laravel Cart to install. It always tells me that `Your requirements could not be resolved to an installable set of packages`. Get this output from the Terminal: Problem 1 Installation request for `moltin/laravel-cart dev-master` -> `satisfiable by moltin/laravel-cart[dev-master]`. `moltin/laravel-cart dev-master` requires `moltin/cart dev-master` -> `no matching package found`. Potential causes: - A typo in the package name - The package is not available in a stable-enough version according to your minimum-stability setting I just have added the requirement in the composer.json file as the tutorial says ``` ... "require": { "laravel/framework": "4.1.*", "intervention/image": "dev-master", "moltin/laravel-cart": "dev-master" }, ... ``` Could anybody tell me how to fix it?

Original source