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
·34 lines (34 loc) · 1.13 KB
/
composer.json
File metadata and controls
executable file
·34 lines (34 loc) · 1.13 KB
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
{
"name": "openregion/sphinxql-query-builder",
"type": "library",
"description": "A PHP query builder for SphinxQL and ManticoreQL with MySQLi and PDO drivers.",
"keywords": ["database", "sphinxql", "sphinx", "search", "SQL", "query builder"],
"homepage": "https://github.com/openregion/SphinxQL-Query-Builder",
"license": "Apache-2.0",
"authors": [
{"name": "foolz", "email": "support@foolz.us"},
{"name": "CIT Open Region", "homepage": "https://www.openregion.info/"}
],
"support": {
"issues": "https://github.com/openregion/SphinxQL-Query-Builder/issues",
"source": "https://github.com/openregion/SphinxQL-Query-Builder",
"docs": "https://github.com/openregion/SphinxQL-Query-Builder/tree/master/docs"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^7 || ^8 || ^9"
},
"autoload": {
"psr-4": {
"OpenRegion\\SphinxQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenRegion\\SphinxQL\\Tests\\": "tests/SphinxQL"
}
}
}