This repository was archived by the owner on Feb 2, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.71 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.71 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "yiisoft/db-sphinx",
"description": "Yii Framework Sphinx full text search engine extension",
"keywords": [
"yii",
"sphinx",
"active-record",
"search",
"fulltext"
],
"type": "library",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/db-sphinx/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/db-sphinx"
},
"authors": [
{
"name": "Paul Klimov",
"email": "klimov.paul@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"yiisoft/yii-core": "^3.0@dev",
"yiisoft/db": "^3.0@dev",
"yiisoft/strings": "^3.0@dev",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"yiisoft/active-record": "^3.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"yiisoft/yii-web": "^3.0@dev",
"yiisoft/di": "dev-master",
"yiisoft/arrays": "^3.0@dev",
"yiisoft/db-mysql": "dev-master",
"yiisoft/yii-console": "dev-master",
"yiisoft/log": "dev-master",
"yiisoft/cache": "dev-master"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"Yiisoft\\Db\\Sphinx\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Db\\Sphinx\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}