-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
44 lines (44 loc) · 946 Bytes
/
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
{
"name": "shift31/laravel-elasticsearch",
"description": "A Laravel Service Provider for the Elasticsearch API client",
"authors": [
{
"name": "Shift 31 Consulting",
"email": "code@shift31.com"
}
],
"require": {
"php": ">=5.6 <=7.1",
"laravel/framework": "~4.2.0",
"elasticsearch/elasticsearch": "~5.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.8",
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9.8",
"satooshi/php-coveralls": "^1.0",
"orchestra/testbench": "^2.2",
"monolog/monolog": "~1.0"
},
"autoload": {
"psr-0": {
"Shift31\\LaravelElasticsearch": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shift31\\LaravelElasticsearch\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.5.x-dev"
}
},
"scripts": {
"test": [
"vendor/bin/phpcs",
"vendor/bin/phpunit"
]
}
}