You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried everything, but nothing works. I looked at all the information on the Internet. I have Windows 10 PC. I am using ZeroMQ with Ratchet php server.
Specifically this is the problem:
Problem 1 - Installation request for react/zmq 0.4.0 -> satisfiable by react/zmq[v0.4.0]. - react/zmq v0.4.0 requires ext-zmq * -> the requested PHP extension zmq is missing from your system.
This means you need to have ext-zmq installed before being able to install react/zmq. The beginning of your composer output indicates you've configured your PHP installation to load php_zmq.so.dll which it failed to load. The file extension looks a bit weird, so first make sure you fix your installation so that php -m successfully reports this extension.
Unfortunately, the underlying extension ext-zmq is somewhat dated and it's currently unclear when it will be updated (see also #58). Their issue board suggests they're currently looking for a new maintainer, so let's see how this situation evolves over time.
Can you clarify what should I do for now? I can install older versions of php, zmq, and zmq extension. Which version works with what? I clicked the link to zmq extension that you provided. The latest version is 1.1.3 beta released on 2016. Which version of php and zmq works with this extension? And please clarify how I should place the zmq extension inside php file.
I tried everything, but nothing works. I looked at all the information on the Internet. I have Windows 10 PC. I am using ZeroMQ with Ratchet php server.
Specifically this is the problem:
Problem 1 - Installation request for react/zmq 0.4.0 -> satisfiable by react/zmq[v0.4.0]. - react/zmq v0.4.0 requires ext-zmq * -> the requested PHP extension zmq is missing from your system.
The is how my
composer.json
file looks like:{ "autoload": { "psr-4": { "MyApp\\": "src" } }, "require": { "cboden/ratchet": "^0.4.2", "react/zmq": "0.4.0" } }
Attached is the screenshot of the error that I am getting on Git bash.
The text was updated successfully, but these errors were encountered: