adldap / adLDAP

adLDAP is a PHP class that provides LDAP authentication and integration with Active Directory.
GNU Lesser General Public License v2.1
424 stars 204 forks source link

Cannot require in Laravel Installation #118

Closed guyver4mk closed 8 years ago

guyver4mk commented 8 years ago

When I run composer require adldap\adldap "5.0.*" on my Laravel Installation i'm getting the below error.

The requested package adldap/adldap 5.0.* is satisfiable by adldap/adldap[5.0.0.x-dev] but these conflict with your requirements or minimum-stability.

Also, when I include the package in the require, and require-dev of my composer.json as "adldap/adldap": "5.0.*" I get the same error.

I have now been able to include the package by changing the require call in require-dev to "adldap/adldap": "@dev"

Please could you update the composer versioning to accept the "5.0.*" release?

strebl commented 8 years ago

Don't use that package anymore! Switch to adlap2/adldap2. The old package isn't maintained anymore. The new package is also more stable and has more features. There is also a Laravel package: adldap2/adldap2-laravel

Am 03.10.2016 um 11:37 schrieb Ciaran Moore notifications@github.com<mailto:notifications@github.com>:

When I run composer require adldap\adldap "5.0.*" on my Laravel Installation i'm getting the below error.

The requested package adldap/adldap 5.0.* is satisfiable by adldap/adldap[5.0.0.x-dev] but these conflict with your requirements or minimum-stability.

Also, when I include the package in the require, and require-dev of my composer.json as "adldap/adldap": "5.0.*" I get the same error.

I have now been able to include the package by changing the require call in require-dev to "adldap/adldap": "@dev"

Please could you update the composer versioning to accept the "5.0.*" release?

You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/adldap/adLDAP/issues/118, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AF3cJMmQf5AFFe0NMoQ3-9hEze-LtWDHks5qwSEMgaJpZM4KMt-_.

guyver4mk commented 8 years ago

Ah, that would explain it!

Thanks for the quick response. I will change to adldap2 now 👍