forked from spacedmonkey/wp-rest-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.04 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
{
"name": "spacedmonkey/wp-rest-blocks",
"type": "wordpress-plugin",
"description": "Add gutenberg blocks data into the post / page endpoints api.",
"homepage": "http://wp-api.org/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jonny Harris",
"homepage": "https://www.spacedmonkey.com/"
}
],
"support": {
"issues": "https://github.com/spacedmonkey/wp-user-roles/issues"
},
"require": {
"composer/installers": "^1.10",
"php": "^7.0 || ^8.0"
},
"config": {
"discard-changes": true,
"platform": {
"php": "7.0"
},
"sort-packages": true
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"wp-coding-standards/wpcs": "^2.3",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5",
"yoast/wp-test-utils": "^0.2.1"
},
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"test": "phpunit"
}
}