-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·65 lines (65 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "gctc-ntgc/laravel-scout-postgres-tsvector",
"description": "PostgreSQL Full Text Search Driver for Laravel Scout",
"keywords": [
"laravel",
"laravel scout",
"search",
"postgresql",
"full text search",
"FTS"
],
"homepage": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector",
"license": "MIT",
"support": {
"issues": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector/issues",
"source": "https://github.com/devNoiseConsulting/laravel-scout-postgres-tsvector"
},
"authors": [
{
"name": "Michael Flynn",
"email": "[email protected]",
"homepage": "https://github.com/devNoiseConsulting"
},
{
"name": "Peter Matseykanets",
"email": "[email protected]",
"homepage": "https://github.com/pmatseykanets"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/contracts": "^9|^10|^11",
"illuminate/database": "^9|^10|^11",
"illuminate/support": "^9|^10|^11",
"laravel/scout": "^9|^10"
},
"require-dev": {
"laravel/pint": "^1.10",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^8.5",
"phpunit/phpunit": "^9.6",
"tightenco/duster": "^2.0"
},
"autoload": {
"psr-4": {
"ScoutEngines\\Postgres\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ScoutEngines\\Postgres\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"ScoutEngines\\Postgres\\PostgresEngineServiceProvider"
]
}
}
}