-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.36 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "automattic/wpvdb",
"description": "WordPress Vector Database plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4",
"woocommerce/action-scheduler": "^3.9",
"wordpress/php-ai-client": "dev-add/embeddings-support as 0.3.1",
"wordpress/wp-ai-client": "^0.2.1"
},
"require-dev": {
"php-stubs/wordpress-stubs": "^6.7",
"phpunit/phpunit": "^9.5",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^1.0",
"brain/monkey": "^2.6",
"squizlabs/php_codesniffer": "^3.9",
"wp-coding-standards/wpcs": "^3.3",
"automattic/vipwpcs": "^3.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/WordPress/php-ai-client.git"
}
],
"autoload": {
"psr-4": {
"WPVDB\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"WPVDB\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"lint:php": "phpcs --standard=phpcs.xml.dist"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}