-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.15 KB
/
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
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
{
"name": "manticoresoftware/manticoresearch-buddy",
"description": "Buddy assistant for the Manticore Search",
"keywords": [
"search",
"backup",
"manticoresearch"
],
"license": "GPL-2.0-or-later",
"type": "project",
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Manticoresearch\\Buddy\\Base\\": "src/"
},
"files": ["src/func.php"]
},
"autoload-dev": {
"psr-4": {
"Manticoresearch\\BuddyTest\\": [
"test/src"
]
}
},
"require": {
"manticoresoftware/telemetry": "^0.1.19",
"symfony/dependency-injection": "^6.1",
"manticoresoftware/buddy-core": "dev-main",
"php-ds/php-ds": "^1.4",
"manticoresoftware/manticoresearch-backup": "^1.3",
"symfony/expression-language": "^6.4"
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"slevomat/coding-standard": "^8.5",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5",
"kwn/php-rdkafka-stubs": "^2.2",
"swoole/ide-helper": "~5.0.0"
},
"repositories": [
{
"type": "path",
"url": "./plugins/*"
}
],
"bin": ["manticore-buddy"]
}