From 359e12276f099a4a690e5eea2a9e55005ac62f1b Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 23 Dec 2015 11:30:03 +0000 Subject: [PATCH] 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 }