forked from harlan-zw/laravel-swiftype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.19 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
{
"name": "loonpwn/laravel-swiftype",
"description": "Swiftype Integration for Laravel",
"license": "MIT",
"authors": [
{
"name": "Harlan Wilton",
"email": "[email protected]",
"homepage": "https://harlanzw.com"
}
],
"homepage": "https://github.com/loonpwn/swiftype",
"keywords": ["Laravel", "Swiftype"],
"require": {
"elastic/app-search": "^7.4"
},
"require-dev": {
"illuminate/support": "~6",
"phpunit/phpunit": "~8",
"mockery/mockery": "^1.1",
"orchestra/testbench": "^4.3.0",
"sempro/phpunit-pretty-print": "^1.0",
"fzaninotto/faker": "^1.8"
},
"scripts": {
"test": "phpunit -v"
},
"autoload": {
"psr-4": {
"Loonpwn\\Swiftype\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Loonpwn\\Swiftype\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Loonpwn\\Swiftype\\SwiftypeServiceProvider"
],
"aliases": {
"Swiftype": "Loonpwn\\Swiftype\\Facades\\Swiftype"
}
}
}
}