-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.47 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gally/gally-php-rest-sdk",
"description": "PHP REST SDK for Gally",
"keywords": ["search","client", "gally", "rest", "sdk"],
"type": "library",
"license": [
"Apache-2.0",
"LGPL-2.1-only"
],
"authors": [
{
"name": "The Elasticsuite team",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-json": ">=1.3.7",
"guzzlehttp/guzzle": "^6.2 || ^7.2"
},
"require-dev": {
"ext-yaml": "*",
"ext-zip": "*",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.4",
"symfony/finder": "~4.0"
},
"suggest": {
"ext-curl": "*",
"monolog/monolog": "Allows for client-level logging and tracing"
},
"autoload": {
"psr-4": {
"Gally\\": "src/Gally/"
}
},
"autoload-dev": {
"psr-4": {
"Gally\\Tests\\": "tests/Elasticsearch/Tests/",
"Gally\\IntegrationTests\\": "tests/Elasticsearch/IntegrationTests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcs": [
"phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src --ignore=src/Gally/Endpoints",
"phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp tests --ignore=tests/Gally/Tests/Yaml"
],
"phpstan": [
"phpstan analyse src --level 2 --no-progress"
]
}
}