generated from zingimmick/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
79 lines (79 loc) · 2.35 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
{
"name": "zing/laravel-scout-opensearch",
"description": "Laravel Scout custom engine for OpenSearch",
"keywords": ["opensearch", "laravel", "scout", "search"],
"license": "MIT",
"homepage": "https://github.com/zingimmick/laravel-scout-opensearch",
"support": {
"issues": "https://github.com/zingimmick/laravel-scout-opensearch/issues",
"source": "https://github.com/zingimmick/laravel-scout-opensearch"
},
"authors": [
{
"name": "zingimmick",
"email": "[email protected]",
"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": {
"larastan/larastan": "^1.0 || ^2.0 || ^3.0",
"mockery/mockery": "~1.3.3 || ^1.4.2",
"orchestra/testbench": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-mockery": "^1.0 || ^2.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0",
"zing/coding-standard": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Zing\\LaravelScout\\OpenSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zing\\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": [
"Zing\\LaravelScout\\OpenSearch\\OpenSearchServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}