forked from TomLingham/Laravel-Searchy
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.48 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "highsolutions/laravel-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": "[email protected]"
},
{
"name": "HighSolutions",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5.9 || ^7.0 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "6.*|7.*|8.*|9.*|10.*|11.*",
"orchestra/testbench" : "3.*|4.*|5.*|6.*|7.*|8.*|9.*|10.*"
},
"autoload": {
"psr-4": {
"HighSolutions\\LaravelSearchy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HighSolutions\\Tests\\LaravelSearchy\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"laravel": {
"providers": [
"HighSolutions\\LaravelSearchy\\LaravelSearchyServiceProvider"
],
"aliases": {
"Searchy": "HighSolutions\\LaravelSearchy\\Facades\\Searchy"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}