PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 2.0.0
Subscriptions for WooCommerce with Stripe Recurring Payments v2.0.0
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
← All changes | subscription.php +7 -8 1.10.22.0.0 View file →
@@ -1,11 +1,11 @@
1 1 <?php
2 2 /**
3 - * Plugin Name: Subscription & Recurring Payment for WooCommerce
3 + * Plugin Name: Subscriptions for WooCommerce with Stripe Recurring Payments
4 4 * Plugin URI: https://wpsubscription.co/
5 - * Description: WPSubscription allow WooCommerce to enables recurring payments, subscriptions, and auto-renewals for digital and physical products. Supports Stripe, PayPal, Paddle, and more.
5 + * Description: WPSubscription allows WooCommerce to enable recurring payments, subscriptions, and auto-renewals for digital and physical products. Supports Stripe, PayPal, Paddle, and more.
6 6 *
7 - * Version: 1.10.2
7 + * Version: 2.0.0
8 8 *
9 9 * Author: ConversWP
10 10 * Author URI: https://wpsubscription.co/
11 11 *
@@ -13,16 +13,14 @@
13 13 * Domain Path: /languages
14 14 *
15 15 * Requires PHP: 7.4
16 16 *
17 - * Requires at least: 6.0
18 - * Tested up to: 7.0
17 + * Requires at least: 6.2
18 + * Tested up to: 7.1
19 19 *
20 20 * WC requires at least: 6.0
21 21 * WC tested up to: 10.3
22 22 *
23 - * Requires Plugins: woocommerce
24 - *
25 23 * License: GPLv2 or later
26 24 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
27 25 *
28 26 * @package Subscription
@@ -50,9 +48,9 @@
50 48 * Plugin version
51 49 *
52 50 * @var string
53 51 */
54 - const VERSION = '1.10.2';
52 + const VERSION = '2.0.0';
55 53
56 54 /**
57 55 * Holds various class instances
58 56 *
@@ -173,8 +171,9 @@
173 171 */
174 172 public function includes() {
175 173 // Include functions file first to ensure global functions are available
176 174 require_once SUBSCRPT_INCLUDES . '/functions.php';
175 + require_once SUBSCRPT_INCLUDES . '/Admin/AdminComponents.php';
177 176
178 177 if ( $this->is_request( 'admin' ) ) {
179 178 $this->container['admin'] = new SpringDevs\Subscription\Admin();
180 179 }