From 359e12276f099a4a690e5eea2a9e55005ac62f1b Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 23 Dec 2015 11:30:03 +0000 Subject: [PATCH 1/2] Update composer.json --- composer.json | 50 +++++++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index 9fe5763..1057058 100755 --- a/composer.json +++ b/composer.json @@ -1,25 +1,29 @@ { - "name": "tom-lingham/searchy", - "description": "Laravel Searchy makes user driven searching easy with fuzzy search, basic string matching, Levenshtein Distance and more.", - "keywords": ["laravel","search","fuzzy"], - "license": "MIT", - "authors": [ - { - "name": "Tom Lingham", - "email": "tjlingham@gmail.com" - } - ], - "require": { - "php": ">=5.5.0", - "illuminate/support": "5.*" - }, - "require-dev" :{ - "phpspec/phpspec": "~2.0" - }, - "autoload": { - "psr-4": { - "TomLingham\\Searchy\\": "src/" - } - }, - "minimum-stability": "stable" + "name": "tom-lingham/searchy", + "description": "Laravel Searchy makes user driven searching easy with fuzzy search, basic string matching, Levenshtein Distance and more.", + "keywords": ["laravel","search","fuzzy"], + "license": "MIT", + "authors": [ + { + "name": "Tom Lingham", + "email": "tjlingham@gmail.com" + } + ], + "require": { + "php": ">=5.5.0", + "illuminate/support": "5.1.*|5.2.*" + }, + "require-dev" :{ + "phpspec/phpspec": "~2.0" + }, + "autoload": { + "psr-4": { + "TomLingham\\Searchy\\": "src/" + } + }, + "config": { + "preferred-install": "dist" + }, + "minimum-stability": "dev", + "prefer-stable": true } From fc31d4f70071e30e59d4f5e028e79ab4dfd1b709 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 23 Dec 2015 11:50:52 +0000 Subject: [PATCH 2/2] Support 5.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1057058..f5ea7dc 100755 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "require": { "php": ">=5.5.0", - "illuminate/support": "5.1.*|5.2.*" + "illuminate/support": "5.0.*|5.1.*|5.2.*" }, "require-dev" :{ "phpspec/phpspec": "~2.0"