-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
68 lines (68 loc) · 1.63 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
61
62
63
64
65
66
67
68
{
"name" : "manticoresoftware/manticoresearch-php",
"description" : "PHP Client for Manticore Search",
"keywords" : [
"search",
"client",
"manticoresearch"
],
"license" : "MIT",
"type" : "library",
"require" : {
"php" : "^7.4|^8.0",
"php-http/discovery" : "^1.14",
"ext-json" : "*",
"psr/log" : "^1.1 || ^2.0 || ^3.0"
},
"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" : "*",
"phpstan/phpstan" : "^1.4",
"phpunit/phpunit" : ">=7.5 || ^9.6",
"slevomat/coding-standard" : "^7.0",
"squizlabs/php_codesniffer" : "^3.7"
},
"autoload" : {
"psr-4" : {
"Manticoresearch\\" : "src/Manticoresearch/"
}
},
"autoload-dev" : {
"psr-4" : {
"Test\\ManticoreSearch\\" : "test/Manticoresearch"
}
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : false
}
},
"authors" : [{
"name" : "Manticore Software",
"email" : "[email protected]",
"homepage" : "https://manticoresearch.com/"
}, {
"name" : "Adrian Nuta",
"email" : "[email protected]",
"role" : "Developer"
}
],
"support" : {
"issues" : "https://github.com/manticoresoftware/manticoresearch-php/issues",
"source" : "https://github.com/manticoresoftware/manticoresearch-php/",
"chat" : "https://slack.manticoresearch.com/"
},
"scripts" : {
"check-cs" : "phpcs --standard=ruleset.xml src/ test/",
"fix-cs" : "phpcbf --standard=ruleset.xml src/ test/",
"phpstan" : "phpstan"
}
}