forked from FoolCode/SphinxQL-Query-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·30 lines (30 loc) · 888 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
{
"name": "foolz/sphinxql-query-builder",
"replace": {"foolz/sphinxql": "self.version"},
"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",
"authors": [{"name": "foolz", "email": "[email protected]"}],
"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"
}
}
}