-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
55 lines (55 loc) · 1.37 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
{
"name": "10up/restricted-site-access",
"description": "Limit access to visitors who are logged in or allowed by IP addresses. Includes many options for handling blocked visitors.",
"authors": [
{
"name": "10up",
"email": "[email protected]",
"homepage": "https://10up.com",
"role": "Developer"
}
],
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require-dev": {
"10up/phpcs-composer": "dev-master",
"phpunit/phpunit": "9.4.4",
"yoast/phpunit-polyfills": "1.x-dev"
},
"scripts": {
"test": "phpunit",
"test:acceptance": "wpacceptance run",
"lint": "phpcs --extensions=php -s .",
"lint-fix": "phpcbf --extensions=php .",
"post-install-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh RSA_Validator"
],
"post-update-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh RSA_Validator"
]
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"platform-check": false
},
"require": {
"10up/wp-compat-validation-tool": "dev-trunk",
"mlocati/ip-lib": "dev-master",
"php": ">=7.4"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/10up/wp-compat-validation-tool.git"
}
],
"extra": {
"installer-paths": {
"./{$name}/": ["10up/wp-compat-validation-tool"]
}
}
}