-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
38 lines (38 loc) · 923 Bytes
/
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": "skyraptor/modelsearch",
"license": "MIT",
"keywords": ["laravel", "modelsearch", "search", "query"],
"authors": [
{
"name": "Patrick Henninger",
"email": "[email protected]",
"homepage": "https://skyraptor.eu"
}
],
"autoload": {
"psr-4": {
"ModelSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SkyRaptor\\Tests\\ModelSearch\\": "tests/"
}
},
"require": {
"illuminate/support": "5.7.*||5.8.*",
"illuminate/http": "5.7.*||5.8.*",
"illuminate/database": "5.7.*||5.8.*"
},
"require-dev": {
"phpunit/phpunit": "~7.0||~8.0",
"orchestra/testbench": "~3.7"
},
"extra": {
"laravel": {
"providers": [
"ModelSearch\\ModelSearchServiceProvider"
]
}
}
}