-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 2.75 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": "newfold-labs/wp-plugin-blueprint",
"description": "WordPress plugin that integrates your WordPress site with the Blueprint control panel, including performance, security, and update features.",
"type": "wordpress-plugin",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Evan Mullins",
"homepage": "https://evanmullins.com"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.0.0"
},
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"preferred-install": {
"newfold-labs/*": "source",
"*": "dist"
}
},
"repositories": {
"newfold": {
"type": "composer",
"url": "https://newfold-labs.github.io/satis/",
"only": [
"newfold-labs/*"
]
}
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2",
"roave/security-advisories": "dev-latest",
"wp-cli/i18n-command": "^2.4.3",
"wp-phpunit/wp-phpunit": "^6.3.1"
},
"scripts": {
"fix": "vendor/bin/phpcbf --standard=phpcs.xml .",
"lint": "vendor/bin/phpcs --standard=phpcs.xml -s .",
"i18n": [
"vendor/bin/wp i18n make-pot . ./languages/wp-plugin-blueprint.pot --headers=Report-Msgid-Bugs-To:https://github.com/newfold-labs/wp-plugin-blueprint/issues --exclude=assets,storybook,tests",
"vendor/bin/wp i18n make-pot . ./languages/wp-plugin-blueprint.pot --headers=POT-Creation-Date:null --exclude=assets,storybook,tests"
]
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"lint": "Check files against coding standards.",
"i18n": "Generate a .pot file for translation."
},
"require": {
"doctrine/inflector": "1.2.0 as 1.3.1",
"newfold-labs/wp-module-coming-soon": "^1.1.12",
"newfold-labs/wp-module-data": "^2.4.11",
"newfold-labs/wp-module-deactivation": "^1.0.2",
"newfold-labs/wp-module-ecommerce": "^1.3.9",
"newfold-labs/wp-module-loader": "^1.0.10",
"newfold-labs/wp-module-marketplace": "^2.1.0",
"newfold-labs/wp-module-notifications": "^1.2.1",
"newfold-labs/wp-module-onboarding": "^1.11.8",
"newfold-labs/wp-module-performance": "^1.2.2",
"newfold-labs/wp-module-runtime": "^1.0.7",
"newfold-labs/wp-module-secure-passwords": "^1.1",
"newfold-labs/wp-module-sso": "^1.0.4",
"wp-forge/wp-update-handler": "^1.0",
"wp-forge/wp-upgrade-handler": "^1.0"
}
}