forked from WordPress/wp-ai-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.06 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.06 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
67
68
69
70
71
72
{
"name": "wordpress/wp-ai-client",
"description": "An AI client and API for WordPress to communicate with any generative AI models of various capabilities using a uniform API.",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"ai",
"api",
"llm",
"wordpress"
],
"authors": [
{
"name": "WordPress AI Team",
"homepage": "https://make.wordpress.org/ai/"
}
],
"homepage": "https://github.com/WordPress/wp-ai-client",
"support": {
"issues": "https://github.com/WordPress/wp-ai-client/issues",
"source": "https://github.com/WordPress/wp-ai-client"
},
"autoload": {
"psr-4": {
"WordPress\\AI_Client\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"WordPress\\AI_Client\\PHPUnit\\Includes\\": "tests/phpunit/includes"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-json": "*",
"nyholm/psr7": "^1.5",
"wordpress/php-ai-client": "^0.3"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^1.10 | ^2.1",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-coding-standards/wpcs": "^3.0",
"wp-phpunit/wp-phpunit": "^6.8",
"yoast/phpunit-polyfills": "^4.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4"
}
},
"scripts": {
"lint": [
"@phpcs",
"@phpstan"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyze --memory-limit=512M"
}
}