zf2-facebook-module icon indicating copy to clipboard operation
zf2-facebook-module copied to clipboard

composer.json not loading the module because of zendframework version requirement

Open adragos opened this issue 12 years ago • 1 comments

this

"require": {
    "php": ">=5.3.3",
    "zendframework/zendframework": "2.0.0beta4",
    "facebook/php-sdk": "v3.2.1"
},

should be updated to

"require": {
    "php": ">=5.3.3",
    "zendframework/zendframework": "dev-master",
    "facebook/php-sdk": "v3.2.1"
},

otherwise, anyone using a newer version of ZendFramework 2 will not be able to install this module using composer.

adragos avatar May 16 '13 07:05 adragos

Pull request please.

widmogrod avatar May 16 '13 14:05 widmogrod