robbiepaul / zbar-qrdecoder

A PHP wrapper for Zbar. Decodes images/photos containing QR codes.
32 stars 38 forks source link

Doesn't work with Symfony3 #4

Closed bjoernfal closed 8 years ago

bjoernfal commented 8 years ago

If your're using Symfony3, then composer won't install it, because of the requirements "symfony/process 2.*".

Should work with "symfony/process 3.*".

robbiepaul commented 8 years ago

Thanks for reporting this. Even though there's no breaking changes between symphony/process 2.x and 3.x because it's a major version change I've tagged my package as a new major version 2.0.0 to ensure backwards compatibility.

Please update your composer.json to:

"robbiep/zbar-qrdecoder": "^2.0"
bjoernfal commented 8 years ago

Thanks, it works!