-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "newfold-labs/wp-module-pls",
"description": "A Newfold module that handles license key provisioning, validation, and other lifecycle events for registered plugins using the PLS API via Hiive.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "arunshenoy99",
"email": "devarunshenoy99@gmail.com"
}
],
"autoload": {
"psr-4": {
"NewfoldLabs\\WP\\Module\\PLS\\": "includes"
},
"files": [
"bootstrap.php"
]
},
"repositories": {
"newfold": {
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2",
"wp-cli/i18n-command": "^2.4.3",
"wp-cli/wp-cli": "^2.11"
},
"require": {
"newfold-labs/wp-module-data": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.3.0"
}
},
"scripts": {
"fix": "vendor/bin/phpcbf . --standard=phpcs.xml",
"i18n-pot": "vendor/bin/wp i18n make-pot . ./languages/wp-module-pls.pot --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/newfold-labs/wp-module-pls/issues\",\"POT-Creation-Date\":\"2025-02-13T09:55:55+00:00\"}'",
"i18n-po": "vendor/bin/wp i18n update-po ./languages/wp-module-pls.pot ./languages",
"i18n-mo": "vendor/bin/wp i18n make-mo ./languages",
"i18n-php": "vendor/bin/wp i18n make-php ./languages",
"i18n-json": "rm -f languages/*.json && vendor/bin/wp i18n make-json ./languages --no-purge --pretty-print",
"i18n": [
"@i18n-pot",
"@i18n-po",
"@i18n-mo",
"@i18n-php",
"@i18n-json"
],
"lint": "vendor/bin/phpcs . --standard=phpcs.xml -s"
}
}