Files
wp-graphql-woocommerce/composer.json
T
Jason BahlandGitHub b79c8b6350 Update composer.json
Packagist whines at me when we include a version number in the composer.json file, and also if the GPL License isn't added exactly like this
2019-12-23 09:54:35 -07:00

57 lines
1.5 KiB
JSON

{
"name": "wp-graphql/wp-graphql-woocommerce",
"description": "WooCommerce bindings for WPGraphQL",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"woocommerce",
"graphql",
"wp-graphql",
"wp-graphql-extension",
"woocommerce-extension",
"api",
"woographql"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Geoff Taylor",
"email": "kidunot89@gmail.com",
"role": "Lead developer"
}
],
"require": {
"php": ">=5.6.0",
"firebase/php-jwt": "^5.0"
},
"require-dev": {
"lucatume/wp-browser": ">=2.2.1 <2.2.8"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"files":[
"includes/connection/common-post-type-args.php",
"includes/functions.php"
],
"psr-4": {
"WPGraphQL\\WooCommerce\\": "includes/"
},
"classmap": [
"includes/"
]
},
"scripts": {
"install-wp-tests": "bash bin/install-wp-tests.sh",
"test": "vendor/bin/codecept run",
"functional-test": "vendor/bin/codecept run functional",
"acceptance-test": "vendor/bin/codecept run acceptance",
"wpunit-test": "vendor/bin/codecept run wpunit"
},
"support" : {
"issues": "https://github.com/wp-graphql/wp-graphql-woocommerce/issues",
"source": "https://github.com/wp-graphql/wp-graphql-woocommerce"
}
}