forked from spacedmonkey/wp-rest-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.01 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
{
"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": "GPL2+",
"authors": [
{
"name": "Jonny Harris",
"homepage": "https://www.spacedmonkey.com/"
}
],
"support": {
"issues": "https://github.com/spacedmonkey/wp-user-roles/issues"
},
"require": {
"composer/installers": "~1.0",
"php": "^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3.1",
"wp-coding-standards/wpcs": "^2.1.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0",
"php-stubs/wordpress-stubs": "5.4.0"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs"
}
}