forked from pmatseykanets/laravel-scout-postgres
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·65 lines (65 loc) · 1.84 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": "devnoiseconsulting/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": "flynnmj@devnoise.com",
"homepage": "https://github.com/devNoiseConsulting"
},
{
"name": "Peter Matseykanets",
"email": "pmatseykanets@gmail.com",
"homepage": "https://github.com/pmatseykanets"
}
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"illuminate/contracts": "^10|^11",
"illuminate/database": "^10|^11",
"illuminate/support": "^10|^11",
"laravel/scout": "^10|^11"
},
"require-dev": {
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"nunomaduro/larastan": "^2.9",
"orchestra/testbench": "^8.28",
"phpunit/phpunit": "^9.6",
"tightenco/duster": "^2.7"
},
"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"
]
}
}
}