-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.43 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "github-release-posts/github-release-posts",
"description": "Automatically generate WordPress blog posts from GitHub releases using AI.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"wordpress-plugin",
"github",
"releases",
"ai",
"ai-connectors",
"blog",
"automation"
],
"homepage": "https://github.com/jakemgold/github-release-posts-wordpress",
"authors": [
{
"name": "Jake Goldman",
"homepage": "https://www.linkedin.com/in/jacobgoldman/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/jakemgold/github-release-posts-wordpress/issues",
"source": "https://github.com/jakemgold/github-release-posts-wordpress"
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"10up/wp_mock": "*",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"phpcsstandards/phpcsutils": "*",
"phpstan/phpstan": "^1.0",
"szepeviktor/phpstan-wordpress": "^1.0"
},
"autoload": {
"psr-4": {
"GitHubReleasePosts\\": "includes/classes/"
}
},
"autoload-dev": {
"psr-4": {
"GitHubReleasePosts\\Tests\\": "tests/php/unit/"
}
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyse"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}