Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make WooCommerce Bulk Variations release ready #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Code style with PHP-CS-Fixer
run: ./vendor/bin/php-cs-fixer fix --format=checkstyle | cs2pr
run: ./vendor/squizlabs/php_codesniffer/bin/phpcs -q --report=xml | cs2pr
14 changes: 0 additions & 14 deletions .php-cs-fixer.dist.php

This file was deleted.

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# WooCommerce Bulk Variations

Thank you for downloading WooCommerce Bulk Variations. This plugin allows your customers to add multiple variations of
one product to their cart in one go. This is especially useful for sites that frequently use bulk orders such as B2B
clothing stores.

WooCommerce Bulk Variations adds a settings menu to your products that can be used to generate an order table. The
order table is customizable and an example is shown in the image below.



A WooCommerce utility to let customers add multiple product variations at once to
cart. This might be useful for wholesale stores that are selling products to
customers where customers should be able to add a lot of products to the cart in
Expand Down
25 changes: 14 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
{
"name": "widgets/widgets-collection",
"name": "larsvanrhijn/woocommerce-bulk-variations",
"type": "plugin",
"description": "Widgets Collection is a collection of widgets for Wordpress.",
"description": "A WooCommerce utility to let customers add multiple product variations at once to cart.",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Lars van Rhijn",
"email": "[email protected]"
}
],
"funding": [
{
"url": "https://github.com/KiOui",
"type": "github"
}
],
"require": {
"php": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0"
"php": "^7.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"license": "MIT"
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0"
}
}

Loading
Loading