-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "muhaimenul/lara-search",
"description": "An eloquent model searching package with various searching configuration.",
"keywords": ["laravel", "eloquent", "search", "searchable", "database", "model", "full-text", "muhaimenul", "larasearch"],
"license": "MIT",
"authors": [
{
"name": "Muhaimenul Islam",
"email": "i.muhaimen@gmail.com",
"homepage": "https://github.com/muhaimenul",
"role": "Developer"
}
],
"require": {
"laravel/framework": ">=4.2"
},
"autoload": {
"psr-4": {
"Muhaimenul\\Larasearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Muhaimenul\\Larasearch\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Muhaimenul\\Larasearch\\LarasearchServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.19"
}
}