-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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
{
"name": "wpscholar/simple-website-redirect",
"description": "A simple plugin designed to redirect an entire website (except the WordPress admin) to another website.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Micah Wood",
"homepage": "https://wpscholar.com"
}
],
"require": {
"php": ">=7.4",
"wpscholar/url": "^1.2.3"
},
"require-dev": {
"wpscholar/phpcs-standards-wpscholar": "@stable",
"wp-cli/wp-cli-bundle": "@stable"
},
"scripts": {
"fix": [
"vendor/bin/phpcbf ."
],
"i18n": [
"vendor/bin/wp i18n make-pot . ./languages/simple-website-redirect.pot --headers='{\"POT-Creation-Date\":null}'"
],
"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."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4.0"
}
}
}