-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
43 lines (43 loc) · 1.04 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
{
"name": "classicpress-plugins/classicpress-seo",
"description": "Classic SEO is the first SEO plugin built specifically to work with ClassicPress. A fork of Rank Math, the plugin contains many essential SEO tools to help optimize your website.",
"homepage": "https://github.com/ClassicPress-plugins/classicpress-seo",
"keywords": ["classicpress", "seo", "plugin", "classicpress-plugin"],
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "ClassicPress",
"homepage": "https://www.classicpress.net/"
}
],
"require": {
"php": ">=7.4",
"cmb2/cmb2": "^2.6",
"composer/installers": "~1.0",
"a5hleyrich/wp-background-processing": "^1.0",
"psr/log": "^1.1"
},
"extra": {
"installer-paths": {
"vendor/cmb2": ["cmb2/cmb2"]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"includes/",
"vendor/"
],
"files": [
"includes/template-tags.php",
"vendor/cmb2/init.php"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}