This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
74 lines (74 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bluehost/mojo-marketplace-wp-plugin",
"description": "WordPress plugin that has shortcodes, widgets and themes.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"abandoned": "newfold-labs/wp-plugin-mojo",
"authors": [
{
"name": "Mike Hansen",
"homepage": "https://mikehansen.me/"
},
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"support": {
"source": "https://github.com/bluehost/mojo-marketplace-wp-plugin",
"issues": "https://github.com/bluehost/mojo-marketplace-wp-plugin/issues"
},
"repositories": {
"newfold-satis": {
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
},
"require": {
"doctrine/inflector": "1.2.0 as 1.3.1",
"newfold-labs/wp-module-business-reviews": "^1.1.1",
"newfold-labs/wp-module-data": "^2.4.9",
"newfold-labs/wp-module-deactivation": "^1.0.2",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "1.5.2",
"newfold-labs/wp-module-secure-passwords": "^1.1",
"newfold-labs/wp-module-sso": "^1.0.4",
"wp-forge/wp-update-handler": "^1.0"
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2.2",
"wp-cli/i18n-command": "^2.4.4",
"wp-cli/wp-cli-bundle": "^2.9"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.0.0"
},
"platform-check": false,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"fix": [
"vendor/bin/phpcbf . --standard=Bluehost"
],
"i18n": [
"vendor/bin/wp i18n make-pot . ./languages/mojo-marketplace-wp-plugin.pot --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/bluehost/mojo-marketplace-wp-plugin/issues\",\"POT-Creation-Date\":null}'"
],
"lint": [
"vendor/bin/phpcs . --standard=Bluehost -s"
]
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"i18n": "Generate a .pot file for translation.",
"lint": "Check files against coding standards."
}
}