-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 806 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 806 Bytes
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
{
"name": "10up/safe-redirect-manager",
"type": "wordpress-plugin",
"description": "Safely manage your website's HTTP redirects.",
"authors": [
{
"name": "Taylor Lovett",
"email": "taylor.lovett@10up.com"
}
],
"require-dev": {
"10up/phpcs-composer": "dev-master",
"phpunit/phpunit": "^8.5|^9.6",
"wp-phpunit/wp-phpunit": "^6.9",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"lint": [
"phpcs ."
],
"lint-fix": [
"phpcbf ."
],
"phpcs:compat": "vendor/bin/phpcs safe-redirect-manager.php inc/ -p --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 7.4-"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}