Skip to content

Commit

Permalink
Merge pull request #1 from woocommerce/master
Browse files Browse the repository at this point in the history
Upstream changes
  • Loading branch information
pcfreak30 authored Feb 22, 2020
2 parents ce390d6 + bcb6b90 commit dcfbf7a
Show file tree
Hide file tree
Showing 17 changed files with 3,013 additions and 802 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ wp-content/plugins/hello.php

.idea
vendor/
node_modules/
35 changes: 21 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,33 @@
"description": "WooCommerce product tables feature plugin",
"homepage": "https://github.com/woocommerce/woocommerce-product-tables-feature-plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"license": "GPL-3.0+",
"require": {
"php": ">=5.6|>=7.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "0.14.1",
"woocommerce/woocommerce-git-hooks": "1.0.5",
"phpunit/phpunit": "^6.5"
"phpunit/phpunit": "8.3.5",
"woocommerce/woocommerce-sniffs": "0.0.9"
},
"scripts": {
"pre-update-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
"test": [
"phpunit"
],
"pre-install-cmd": [
"WooCommerce\\GitHooks\\Hooks::preHooks"
"phpcs": [
"phpcs -s -p"
],
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"WooCommerce\\GitHooks\\Hooks::postHooks"
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs",
"WooCommerce\\GitHooks\\Hooks::postHooks"
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}
Loading

0 comments on commit dcfbf7a

Please sign in to comment.