forked from zingimmick/laravel-scout-opensearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vormkracht10/laravel-scout-opensearch",
"description": "Laravel Scout custom engine for OpenSearch",
"keywords": ["opensearch", "laravel", "scout", "search"],
"license": "MIT",
"homepage": "https://github.com/vormkracht10/laravel-scout-opensearch",
"support": {
"issues": "https://github.com/vormkracht10/laravel-scout-opensearch/issues",
"source": "https://github.com/vormkracht10/laravel-scout-opensearch"
},
"authors": [
{
"name": "Mathieu de Ruiter",
"email": "mathieu@vormkracht10.nl",
"homepage": "https://github.com/casmo"
},
{
"name": "zingimmick",
"email": "zingimmick@outlook.com",
"homepage": "https://github.com/zingimmick"
}
],
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"laravel/scout": "^8.5 || ^9.1 || ^10.0",
"opensearch-project/opensearch-php": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3 || ^1.4.2",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-mockery": "^1.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"Vormkracht10\\LaravelScout\\OpenSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vormkracht10\\LaravelScout\\OpenSearch\\Tests\\": "tests"
}
},
"scripts": {
"lint:rector": "@fix:rector --dry-run",
"lint:ecs": "ecs check --ansi",
"lint:phpstan": "phpstan analyse --ansi",
"fix:rector": "rector process --ansi",
"fix:ecs": "@lint:ecs --fix",
"test:phpunit": "phpunit --colors=always",
"lint": [
"@lint:rector",
"@lint:ecs",
"@lint:phpstan"
],
"fix": [
"@fix:rector",
"@fix:ecs"
],
"test": [
"@test:phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"Vormkracht10\\LaravelScout\\OpenSearch\\OpenSearchServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}