forked from bitrix-toolkit/bitrix-elastic-indexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 780 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
{
"name": "sheerockoff/bitrix-elastic-indexer",
"description": "Bitrix infoblocks indexer into Elasticsearch.",
"type": "library",
"license": "Unlicense",
"authors": [
{
"name": "Vitalik Shirokov",
"email": "shirokov@vitalik.pw"
}
],
"autoload": {
"psr-4": {
"Sheerockoff\\BitrixElastic\\": "src/"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"elasticsearch/elasticsearch": "^7.1"
},
"autoload-dev": {
"psr-4": {
"Sheerockoff\\BitrixElastic\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/var-dumper": "^4.3",
"sheerockoff/bitrix-ci": "^18.5"
}
}