-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
48 lines (48 loc) · 1.42 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
{
"name": "ripaclub/sphinxsearch",
"description": "Sphinx Search library provides SphinxQL indexing and searching features",
"homepage": "https://github.com/ripaclub/sphinxsearch",
"license": "BSD-2-Clause",
"require": {
"php": "^5.5 || ^7.0",
"container-interop/container-interop": "~1.0",
"zendframework/zend-db": "^2.4 || ^3.0",
"zendframework/zend-servicemanager": "^2.4 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"satooshi/php-coveralls": "dev-master"
},
"authors": [
{
"name": "Leo Di Donato",
"email": "leodidonato@gmail.com",
"homepage": "http://github.com/leodido"
},
{
"name": "Leonardo Grasso",
"email": "me@leonardograsso.com",
"homepage": "http://github.com/leogr"
}
],
"autoload": {
"psr-4": {
"SphinxSearch\\": "library",
"SphinxSearchTest\\": "tests"
}
},
"suggest": {
"ripaclub/zf2-sphinxsearch": "ZF2 integration module for SphinxSearch library",
"ripaclub/zf2-sphinxsearch-tool": "Utility that provides a set of tools to create and handle Sphinx Search configs and sources"
},
"keywords": [
"sphinx",
"sphinxql",
"search",
"indexing",
"search engine",
"query builder",
"zf2",
"pdo"
]
}