Hi, I got it solved. In my /usr/local/lib is a lib called libzmq.4.dylib. I looked at other libs in the dir and they all sym link to ../Celler direectory. Went to dir and there is a zeromq dir (this got built either when installed packageinfo or the lib build, still checking timestamps). In the version directory there is a lib dir, so I sym linked to that dir and yes php -m | zmq worked and composer update installed the zero mq packages.
lrwxr-xr-x 1 jimm admin 51 Nov 3 18:41 libzmq.4.dylib -> /usr/local/Cellar/zeromq/4.0.5_2/lib/libzmq.4.dylib
"require": { "laravel/framework": "4.2.", "laracasts/commander": "~1.0", "indatus/dispatcher": "~1.4", "cboden/ratchet": "0.3.", "react/zmq": "0.2.|0.3." <---- Installed.
I already have the rachet demo working in Laravel42, now I am going to setup pubsub example with ratchet and zeromq. ultimate interest is to connect my JMS pub/sub into react and have laravel apps have access to the data resources.
Jim