-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 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
33
34
35
36
37
{
"name": "armandphilippot/wp-graphql-gravatar",
"description": "Add a WP GraphQL field containing the Gravatar url of the comment author.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Armand Philippot",
"email": "contact@armandphilippot.com",
"homepage": "https://www.armandphilippot.com/"
}
],
"homepage": "https://github.com/ArmandPhilippot/wp-graphql-gravatar#readme",
"support": {
"issues": "https://github.com/ArmandPhilippot/wp-graphql-gravatar/issues",
"source": "https://github.com/ArmandPhilippot/wp-graphql-gravatar"
},
"keywords": [
"WordPress",
"GraphQL",
"Gravatar",
"plugin"
],
"type": "wordpress-plugin",
"require": {
"composer/installers": "^1.0.0 || ^2.0.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0"
},
"scripts": {
"lint": "phpcs --standard=phpcs.xml",
"fix": "phpcbf --standard=phpcs.xml"
}
}