Skip to content

Commit

Permalink
Update dependencies to Laravel 5.2 for the new version of the package
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Norcombe authored and Ben Norcombe committed Jun 30, 2016
1 parent 94b8304 commit b3e7a03
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# LDAP Lookup
=================
LDAP lookup is a simple LDAP entries lookup provider for use with in Laravel 5.1 LTS
LDAP lookup is a simple LDAP entries lookup provider for use with in Laravel 5.1 +

## Installation

The tool requires you have [PHP](https://php.net) 5.5.9+ and [Composer](https://getcomposer.org).

The get the latest version of LDAP lookup, add the following line to your `composer.json` file:
To get the version of LDAP lookup that works with Laravel 5.1, add the following line to your `composer.json` file:
```
"maenbn/ldaplookup": "dev-master"
"maenbn/ldaplookup": "1.1.*"
```

Other wise for Laravel 5.2 add the following instead:

```
"maenbn/ldaplookup": "1.2.*"
```

Then run `composer install` or `composer update` to install.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maenbn/ldaplookup",
"description": "LdapLookup is a tool to lookup entries in LDAP For Laravel 5.1 LTS",
"description": "LdapLookup is a tool to lookup entries in LDAP For Laravel 5.1+",
"keywords": ["laravel", "framework", "ldap lookup", "ldap", "lookup", "LdapLookup", "Laravel LdapLookup", "Laravel-LdapLookup", "Ben Norcombe", "BenNorcombe"],
"license": "MIT",
"authors": [
Expand All @@ -11,12 +11,12 @@
],
"require": {
"php": ">=5.5.9",
"illuminate/contracts": "5.1.*",
"illuminate/support": "5.1.*"
"illuminate/contracts": "5.2.*",
"illuminate/support": "5.2.*"

},
"require-dev": {
"orchestra/testbench": "3.1.*"
"orchestra/testbench": "^3.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit b3e7a03

Please sign in to comment.