-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
40 lines (40 loc) · 976 Bytes
/
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
{
"name": "spacedmonkey/wp-rest-blocks",
"description": "Add gutenberg blocks data into post / page / widget REST API endpoints.",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Jonny Harris",
"homepage": "https://www.spacedmonkey.com/"
}
],
"homepage": "http://wp-api.org/",
"support": {
"issues": "https://github.com/spacedmonkey/wp-rest-blocks/issues"
},
"require": {
"php": "^7.0 || ^8.0",
"composer/installers": "^1.10",
"tburry/pquery": "^1.1"
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"wp-coding-standards/wpcs": "^3.0",
"yoast/wp-test-utils": "^1.2.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"discard-changes": true,
"sort-packages": true
},
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"test": "phpunit"
}
}