Merge pull request #18 from JamesForks/composer-change

Update composer.json
This commit is contained in:
Tom
2015-12-23 22:57:47 +11:00

View File

@ -1,25 +1,29 @@
{ {
"name": "tom-lingham/searchy", "name": "tom-lingham/searchy",
"description": "Laravel Searchy makes user driven searching easy with fuzzy search, basic string matching, Levenshtein Distance and more.", "description": "Laravel Searchy makes user driven searching easy with fuzzy search, basic string matching, Levenshtein Distance and more.",
"keywords": ["laravel","search","fuzzy"], "keywords": ["laravel","search","fuzzy"],
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
"name": "Tom Lingham", "name": "Tom Lingham",
"email": "tjlingham@gmail.com" "email": "tjlingham@gmail.com"
} }
], ],
"require": { "require": {
"php": ">=5.5.0", "php": ">=5.5.0",
"illuminate/support": "5.*" "illuminate/support": "5.0.*|5.1.*|5.2.*"
}, },
"require-dev" :{ "require-dev" :{
"phpspec/phpspec": "~2.0" "phpspec/phpspec": "~2.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"TomLingham\\Searchy\\": "src/" "TomLingham\\Searchy\\": "src/"
} }
}, },
"minimum-stability": "stable" "config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
} }