-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·32 lines (32 loc) · 1.07 KB
/
composer.json
File metadata and controls
executable file
·32 lines (32 loc) · 1.07 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
{
"name": "foolz/sphinxql-query-builder",
"replace": {"foolz/sphinxql": "self.version"},
"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/FoolCode/SphinxQL-Query-Builder",
"license": "Apache-2.0",
"authors": [{"name": "foolz", "email": "support@foolz.us"}],
"support": {
"issues": "https://github.com/FoolCode/SphinxQL-Query-Builder/issues",
"source": "https://github.com/FoolCode/SphinxQL-Query-Builder",
"docs": "https://github.com/FoolCode/SphinxQL-Query-Builder/tree/master/docs"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^7 || ^8 || ^9"
},
"autoload": {
"psr-4": {
"Foolz\\SphinxQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Foolz\\SphinxQL\\Tests\\": "tests/SphinxQL"
}
}
}