-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathcomposer.json
43 lines (43 loc) · 829 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
41
42
43
{
"name": "pristas-peter/wp-graphql-gutenberg",
"description": "Query gutenberg blocks with wp-graphql",
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"WPGraphqlGutenberg\\": "src/"
},
"classmap": [
"src/"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.3"
},
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require-dev": {
"automattic/vipwpcs": "^2.2",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"phpcs-i": [
"@php ./vendor/bin/phpcs -i"
],
"check-cs": [
"@php ./vendor/bin/phpcs"
],
"fix-cs": [
"@php ./vendor/bin/phpcbf"
]
},
"require": {
"opis/json-schema": "^1.0",
"voku/simple_html_dom": "4.7.17"
}
}