zerodine / MongoDBAclBundle

This bundle allows the use of MongoDB as the storage layer for the Symfony ACLs component.
21 stars 32 forks source link

Do not require dev version of mongodb #33

Closed danez closed 10 years ago

danez commented 10 years ago

When explicitely requiring a dev version of mongodb, this can conflict with project setups, that have a minimum-stability of stable.

Problem 1
    - Installation request for iampersistent/mongodb-acl-bundle dev-master@dev -> satisfiable by iampersistent/mongodb-acl-bundle[dev-master].
    - iampersistent/mongodb-acl-bundle dev-master requires doctrine/mongodb 1.0.x-dev -> no matching package found.

I think it is better to require a minimum version of ~1.0 which has to advantages:

Also adding minimum-stability in a library/bundle is only useful for unit-tests, but testing against stable versions is not wrong imho.

Also changed the version of symfony/security to a shorter one, that is doing the same thing.