Skip to content
This repository has been archived by the owner on Aug 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #11 from amida-software/master
Browse files Browse the repository at this point in the history
Please take in the changes for compatibility with Laravel > 5.1
  • Loading branch information
yaapis authored Jan 26, 2017
2 parents 06c4c74 + 0fd3055 commit a3738b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.1.*"
"illuminate/support": ">=5.1"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "~4.0",
"laravel/laravel": "5.1.*"
"laravel/laravel": ">=5.1"
},
"autoload": {
"classmap": [
Expand Down
2 changes: 1 addition & 1 deletion src/Terbium/DbConfig/DbProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function load($collection = null)
$list = $list->where('key', 'LIKE', $collection . '%');
}

$list = $list->lists('value', 'key');
$list = $list->pluck('value', 'key');


// convert dotted list back to multidimensional array
Expand Down

0 comments on commit a3738b5

Please sign in to comment.