widmogrod / zf2-facebook-module

Zend Framework 2 module adding integration with Facebook php-sdk
16 stars 6 forks source link

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

Open adragos opened 11 years ago

adragos commented 11 years ago

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.

widmogrod commented 11 years ago

Pull request please.