-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.33 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
56
{
"name": "codeinwp/hyve-lite",
"description": "An AI support bot.",
"version": "1.2.2",
"type": "wordpress-plugin",
"license": "GPL-V3",
"autoload": {
"psr-4": {
"ThemeIsle\\HyveLite\\": "inc/"
},
"files": [
"vendor/codeinwp/themeisle-sdk/load.php"
]
},
"authors": [
{
"name": "ThemeIsle Team",
"email": "[email protected]"
},
{
"name": "Hardeep Asrani",
"email": "[email protected]"
}
],
"scripts": {
"lint": "phpcs --standard=phpcs.xml",
"format": "phpcbf --standard=phpcs.xml",
"phpstan": "phpstan analyse --memory-limit 2G",
"phpunit": "phpunit"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^3.0"
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"require": {
"codeinwp/themeisle-sdk": "^3.3",
"hkulekci/qdrant": "^0.5.7",
"symfony/http-client": "^6.4",
"nyholm/psr7": "^1.8",
"yethee/tiktoken": "^0.7.0"
}
}