Initial commit
diff --git a/includes/class-wc-stripe-upe-compatibility.php b/includes/class-wc-stripe-upe-compatibility.php
new file mode 100644
index 0000000..9679bd2
--- /dev/null
+++ b/includes/class-wc-stripe-upe-compatibility.php
@@ -0,0 +1,18 @@
+<?php
+if ( ! defined( 'ABSPATH' ) ) {
+	exit;
+}
+
+class WC_Stripe_UPE_Compatibility {
+	const MIN_WP_VERSION  = '5.6';
+	const MIN_WC_VERSION  = '5.5';
+	const LEARN_MORE_LINK = 'https://developer.woocommerce.com/2021/08/26/developer-advisory-woocommerce-stripe-support-policy-change/';
+
+	public static function is_wp_supported() {
+		return version_compare( get_bloginfo( 'version' ), self::MIN_WP_VERSION, '>=' );
+	}
+
+	public static function is_wc_supported() {
+		return version_compare( WC_VERSION, self::MIN_WC_VERSION, '>=' );
+	}
+}