forked from pmatseykanets/laravel-scout-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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
{
"name": "pmatseykanets/laravel-scout-postgres",
"description": "PostgreSQL Full Text Search Driver for Laravel Scout",
"keywords": [
"laravel",
"laravel scout",
"search",
"postgresql",
"full text search",
"FTS"
],
"homepage": "https://github.com/pmatseykanets/laravel-scout-postgres",
"license": "MIT",
"authors": [
{
"name": "Peter Matseykanets",
"email": "[email protected]",
"homepage": "https://github.com/pmatseykanets",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/contracts": "~5.3",
"illuminate/database": "~5.3",
"illuminate/support": "~5.3",
"laravel/scout": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"mockery/mockery": "^0.9.5"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Postgres\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ScoutEngines\\Postgres\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}