-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 898 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 898 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
{
"name": "hypothesis/wp-hypothesis",
"description": "An open platform for the collaborative evaluation of knowledge.",
"homepage": "https://github.com/hypothesis/wp-hypothesis",
"support": {
"issues": "https://github.com/hypothesis/wp-hypothesis/issues",
"source": "https://github.com/hypothesis/wp-hypothesis/"
},
"type": "wordpress-plugin",
"license": "BSD-3-Clause",
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.8",
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"test": "@lint",
"lint": "phpcs --standard=phpcs.xml --extensions=php .",
"checkformatting": "@lint",
"format": "phpcbf --extensions=php ."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}