-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer-laravel57.json
42 lines (42 loc) · 978 Bytes
/
composer-laravel57.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
{
"name": "osushi/elasticsearch-orm",
"license": "MIT",
"type": "package",
"homepage": "https://github.com/Osushi/ElasticsearchOrm",
"authors": [
{
"name": "Osushi",
"homepage": "https://github.com/Osushi",
"role": "Author"
}
],
"require": {
"php": ">=7.0.0",
"elasticsearch/elasticsearch": "~6.0.0"
},
"autoload": {
"psr-4": {
"Osushi\\ElasticsearchOrm\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Osushi\\ElasticsearchOrm\\Providers\\ElasticsearchOrmServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "~7.0.0",
"orchestra/testbench": "~3.7.0",
"mockery/mockery": "^1.1"
}
}