ratchetphp / Ratchet

Asynchronous WebSocket server
http://socketo.me
MIT License
6.25k stars 731 forks source link

Could not use with Slim4 #901

Open harpreetsb opened 3 years ago

harpreetsb commented 3 years ago

Hi, I am trying to use this with Slim4 framwork and looks like after installing slim with following setps, I could not run composer require cboden/ratchet. I get the error image

Please help

harpreetsb commented 3 years ago

composer.json looks like this

{
    "require": {
        "slim/slim": "4.*",
        "slim/psr7": "^1.4",
        "nyholm/psr7": "^1.4",
        "nyholm/psr7-server": "^1.0",
        "guzzlehttp/psr7": "^2.0",
        "http-interop/http-factory-guzzle": "^1.2",
        "laminas/laminas-diactoros": "^2.6"
    },
    "autoload": {
        "psr-4": {
            "Controlers\\": "app/Controllers",
            "Routes\\": "app/Routes"
        }
    }
}