-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1002 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
{
"name": "zp/supple",
"description": "Document indexation and migration tool for Elasticsearch",
"type": "library",
"license": "MIT",
"keywords": ["elasticsearch", "elastic", "document", "mapper", "indexer"],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"doctrine/annotations": "^1.11",
"elasticsearch/elasticsearch": "^6.5|^7.0",
"jfcherng/php-diff": "^6.9",
"jms/serializer": "^3.11",
"laminas/laminas-code": "^4.4"
},
"require-dev": {
"monolog/monolog": "^2.2",
"phpstan/phpstan": "^0.12.77",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5",
"symfony/console": "^5.2"
},
"suggest": {
"symfony/console": "For using the migration command"
},
"autoload": {
"psr-4": {
"Zp\\Supple\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"": "examples",
"Zp\\Supple\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}