-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 935 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 935 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
{
"name": "pfefferle/wordpress-webfinger",
"description": "WebFinger for WordPress",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [{
"name": "Matthias Pfefferle",
"homepage": "https://notiz.blog/"
}],
"require": {
"php": ">=7.4",
"composer/installers": "~2.2"
},
"require-dev": {
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"yoast/phpunit-polyfills": "^2.0",
"phpunit/phpunit": "^8.5 || ^9.6"
},
"extra": {
"installer-name": "webfinger"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"test": "phpunit"
}
}