-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.82 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "plugpressco/plugpress-sdk",
"description": "PlugPress SDK — self-hosted updates, licensing, telemetry opt-in, deactivation feedback, and About page for WordPress plugins.",
"type": "library",
"license": "GPL-2.0-or-later",
"homepage": "https://plugpress.co",
"keywords": [
"wordpress",
"plugin",
"updater",
"license",
"plugpress",
"telemetry"
],
"authors": [
{
"name": "PlugPress",
"homepage": "https://plugpress.co"
}
],
"require": {
"php": ">=8.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpcsstandards/phpcsutils": true
}
},
"extra": {
"plugpress-sdk": {
"components": {
"updater": "PlugPress_Updater — self-hosted update checker (skip when Freemius/WP.org owns updates)",
"license": "PlugPress_License — license key activation/validation (gated on pro:true + updater:true)",
"optin": "PlugPress_Optin — anonymous telemetry opt-in (GDPR/WP-guideline 7 compliant)",
"feedback": "PlugPress_Feedback — deactivation reason modal on plugins.php",
"about": "PlugPress_About — About / Beta Hub admin page",
"notices": "PlugPress_Notices — shared dismissible admin notice helper"
}
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1",
"phpcsstandards/phpcsextra": "^1.2",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf"
},
"suggest": {
"freemius/wordpress-sdk": "Required only for Freemius mode (the `freemius` config block) — the SDK finds and boots it for updates + licensing."
}
}