-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.69 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
{
"name": "wpscholar/mpress-hide-from-search",
"description": "Hide individual WordPress pages from search engines and/or WordPress search results.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"support": {
"source": "https://github.com/wpscholar-wp-plugins/mpress-hide-from-search",
"issues": "https://github.com/wpscholar-wp-plugins/mpress-hide-from-search/issues"
},
"autoload": {
"psr-4": {
"HideFromSearch\\": "includes"
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true
},
"require": {
"wp-forge/container": "^3.0.1",
"wp-forge/wp-plugin-check": "^1.0",
"wp-forge/wp-upgrade-handler": "^1.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-cli/wp-cli-bundle": "@stable",
"wpscholar/phpcs-standards-wpscholar": "@stable"
},
"scripts": {
"fix": "vendor/bin/phpcbf . -s",
"i18n": "vendor/bin/wp i18n make-pot . ./languages/mpress-hide-from-search.pot --headers='{\"POT-Creation-Date\":null}' --exclude=tests",
"lint": "vendor/bin/phpcs . -s"
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"i18n": "Generate a .pot file for translation.",
"lint": "Check files against coding standards."
}
}