-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.02 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
{
"name": "honeybee/elasticsearch2-adapter",
"type": "library",
"description": "Elasticsearch 2.x adapter for Honeybee.",
"keywords": [ "honeybee", "elasticsearch", "adapter" ],
"homepage": "https://github.com/honeybee/elasticsearch2",
"license": "MPL-2.0",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"elasticsearch/elasticsearch": "^2.0",
"honeybee/honeybee": "dev-feature/disconnect as 0.2"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^5.5",
"satooshi/php-coveralls": "master@dev",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": { "Honeybee\\Elasticsearch2\\": "src" }
},
"autoload-dev": {
"psr-4": { "Honeybee\\Tests\\Elasticsearch2\\" : "tests" }
},
"scripts": {
"test": "phpunit",
"code-sniffer": "phpcs --extensions=php --standard=psr2 src tests",
"build": [
"@test",
"@code-sniffer"
]
}
}