forked from manticoresoftware/manticoresearch-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.49 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
{
"name": "manticoresoftware/manticoresearch-php",
"description": "PHP Client for Manticore Search",
"keywords": ["search","client","manticoresearch"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=7.1",
"ext-json": "*",
"psr/log": ">=1.1"
},
"suggest": {
"ext-curl": "*",
"guzzlehttp/psr7": ">=1.6",
"php-http/curl-client": ">=1.7",
"php-http/httplug": "^1.1",
"php-http/message": "^1.7",
"monolog/monolog":"*"
},
"require-dev": {
"mockery/mockery": "*",
"phpunit/phpunit": ">=7.5",
"squizlabs/php_codesniffer": ">=3.5"
},
"autoload": {
"psr-4": {
"Manticoresearch\\" : "src/Manticoresearch/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\ManticoreSearch\\": "test/Manticoresearch"
}
},
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Manticore Software",
"email": "contact@manticoresearch.com",
"homepage": "https://manticoresearch.com/"
},
{
"name": "Adrian Nuta",
"email": "adriannuta@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/manticoresoftware/manticoresearch-php/issues",
"source": "https://github.com/manticoresoftware/manticoresearch-php/",
"chat": "https://slack.manticoresearch.com/"
}
}