gitextract_4kf8m5xx/ ├── .editorconfig ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug-report.yml │ │ ├── 2-enhancement.yml │ │ └── config.yml │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── php-unit-tests.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .nvmrc ├── README.md ├── TESTING.md ├── bin/ │ ├── install-wp-tests.sh │ └── lint-branch.sh ├── changelog.txt ├── composer.json ├── includes/ │ ├── Admin/ │ │ ├── AsyncJob.php │ │ ├── BatchProcessor.php │ │ └── Settings.php │ ├── CLI.php │ ├── Generator/ │ │ ├── Coupon.php │ │ ├── Customer.php │ │ ├── CustomerInfo.php │ │ ├── Generator.php │ │ ├── Order.php │ │ ├── OrderAttribution.php │ │ ├── Product.php │ │ └── Term.php │ ├── Plugin.php │ ├── Router.php │ └── Util/ │ └── RandomRuntimeCache.php ├── package.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── tests/ │ ├── README.md │ ├── Unit/ │ │ ├── Generator/ │ │ │ ├── CouponTest.php │ │ │ ├── CustomerTest.php │ │ │ ├── GeneratorTest.php │ │ │ ├── OrderTest.php │ │ │ └── ProductTest.php │ │ ├── PluginTest.php │ │ └── Util/ │ │ └── RandomRuntimeCacheTest.php │ └── bootstrap.php └── wc-smooth-generator.php