Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

fant0m's avatar

how to set-up Goutte

Hello, how can I work with https://github.com/FriendsOfPHP/Goutte/ in laravel 5.1? I was taking a look here https://github.com/dweidner/laravel-goutte but when I did

composer require weidner/goutte

it throws me

[InvalidArgumentException]
Could not find package weidner/qoutte at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability

Same if I tried to require fabpot/goutte. What should I do?

0 likes
1 reply
buchin's avatar

Add to your composer file:

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

Please or to participate in this conversation.