Skip to content
Merged
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
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
*** Changelog ***

2022-06-30 - version 1.0.5
* Fix - Lower version requirement from PHP 8.0.2 to PHP 7.1.

2021-12-15 - version 1.0.4
* Add - coupon generator and a new option for orders to allow for coupon generation.
* Add - use product name to generate more realistic product term names.
Expand Down
9 changes: 8 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.0.2",
"php": "^7.1 || ^8.0",
"psr/container": "1.0.0",
"composer/installers": "~1.2",
"fakerphp/faker": "^1.17.0",
"jdenticon/jdenticon": "^0.10.0",
Expand Down Expand Up @@ -59,5 +60,11 @@
"!vendor/mbezhanov",
"!vendor/symfony"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
111 changes: 60 additions & 51 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<!-- Configs -->
<config name="minimum_supported_wp_version" value="5.0"/>
<config name="testVersion" value="7.0-"/>
<config name="testVersion" value="7.1-"/>

<!-- Rules -->
<rule ref="WooCommerce-Core">
Expand Down
2 changes: 1 addition & 1 deletion wc-smooth-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Author URI: https://woocommerce.com
*
* Tested up to: 5.7
* Requires PHP: 8.0.2
* Requires PHP: 7.1
* WC requires at least: 5.0.0
* WC tested up to: 6.0.0
* Woo: 000000:0a0a0a0a0a0a0a0a0a0a0a0a0a0a0a0
Expand Down