-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.11 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
{
"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": "[email protected]"
}
],
"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
}
}
}