-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·47 lines (47 loc) · 999 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
44
45
46
47
{
"name": "dre1080/wp-graphql-upload",
"description": "Adds file upload support to the WP GraphQL Plugin.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"graphql",
"wp-graphql",
"upload"
],
"authors": [
{
"name": "ando",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "*",
"webonyx/graphql-php": "^14.5",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"WPGraphQL\\Upload\\": "src/"
},
"classmap": [
"src/"
]
}
}