-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.65 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
{
"name": "chrysanthos/scout-elastic-app-search-driver",
"description": "Laravel Scout Adapter for Elastic Enterprise App Search",
"keywords": [
"chrysanthos",
"app-search",
"laravel",
"laravel scout",
"scout-elastic-app-search-driver"
],
"homepage": "https://github.com/chrysanthos/scout-elastic-app-search-driver",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Chrysanthos Prodromou",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"elastic/enterprise-search": "^7.1",
"laravel/scout": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.17",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Chrysanthos\\ScoutElasticAppSearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chrysanthos\\ScoutElasticAppSearch\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Chrysanthos\\ScoutElasticAppSearch\\ScoutElasticAppSearchServiceProvider"
],
"aliases": {
"ScoutElasticAppSearch": "Chrysanthos\\ScoutElasticAppSearch\\ScoutElasticAppSearchFacade"
}
}
}
}