-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 908 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
31
32
33
34
35
36
37
{
"name": "manticoresoftware/buddy-core",
"description": "The Buddy Core to develop your own plugin for Manticore Search",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Manticoresearch\\Buddy\\Core\\": "src/",
"Manticoresearch\\Buddy\\CoreTest\\": "test/src/"
}
},
"authors": [
{
"name": "Manticore Software Co. Ltd",
"email": "contact@manticoresearch.com"
}
],
"minimum-stability": "dev",
"require": {
"composer/composer": "^2.5",
"symfony/console": "^6.2",
"symfony/dependency-injection": "^6.1",
"php-ds/php-ds": "^1.4",
"manticoresoftware/php-sql-parser": "v4.6.0-patch11"
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"slevomat/coding-standard": "^8.5",
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}