forked from FoolCode/SphinxQL-Query-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·29 lines (29 loc) · 838 Bytes
/
composer.json
File metadata and controls
executable file
·29 lines (29 loc) · 838 Bytes
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
{
"name": "zfbase/sphinxql-query-builder",
"type": "library",
"description": "A PHP query builder for SphinxQL. Uses MySQLi to connect to the Sphinx server.",
"keywords": ["database", "sphinxql", "sphinx", "search", "SQL", "query builder"],
"homepage": "http://www.foolz.us",
"license": "Apache-2.0",
"support": {
"email": "[email protected]",
"irc": "irc://irc.irchighway.net/fooldriver"
},
"require": {
"php": "^7.1 || ^8"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8 || ^9"
},
"autoload": {
"psr-4": {
"Foolz\\SphinxQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Foolz\\SphinxQL\\Tests\\": "tests/SphinxQL"
}
}
}