-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 914 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
{
"name": "sspat/es-query-sanitizer",
"description": "Simple helper class to sanitize ElasticSearch reserved characters from query strings",
"type": "library",
"version": "1.0.2",
"keywords": [
"elasticsearch",
"query",
"sanitize",
"escape"
],
"license": "MIT",
"authors": [
{
"name": "Patrik Foldes",
"email": "studio22@mail.ru"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"sspat\\ESQuerySanitizer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"sspat\\ESQuerySanitizer\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 1800,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit"
}
}