-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 865 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 865 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
33
34
35
36
37
38
39
40
41
{
"name": "10up/wp-scrubber",
"description": "A WordPress plugin that scrubs sensitive data from the database.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "10up",
"email": "opensource@10up.com"
}
],
"require": {
"php": ">=8.0",
"fakerphp/faker": "^1.23"
},
"require-dev": {
"10up/phpcs-composer": "^3.0.0",
"10up/wp_mock": "^1.0",
"phpunit/phpunit": "^9.6",
"wp-cli/wp-cli": "^2.11"
},
"scripts": {
"lint": "phpcs -s .",
"lint-fix": "phpcbf .",
"phpunit": "phpunit"
},
"autoload": {
"psr-4": {
"TenUpWPScrubber\\": "includes/classes/"
},
"files": [
"includes/helpers.php",
"includes/core.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}