-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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": "level-level/ll-site-health-filter",
"description": "Removes sensitive data from the Wordpress Site Health tool.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Level Level",
"email": "info@level-level.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4":{
"Clarkson\\Filters\\SiteHealth\\": "src"
},
"files": ["ll-site-health-filter.php"]
},
"scripts": {
"test":[
"echo Running tests",
"@test:composer",
"@test:phpcs",
"@test:docs"
],
"test:composer": [
"composer validate"
],
"test:phpcs": [
"phpcs"
],
"test:docs": [
"php-doc-check ./src -x vendor"
],
"fix":[
"phpcbf"
]
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"niels-de-blaauw/php-doc-check": "^0.2.2",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^3.0"
}
}