PluginProbe
seQura / 4.3.0
seQura v4.3.0
4.3.4 4.3.3 4.3.2 4.3.1 trunk 2.0.0 2.0.10 2.0.11 2.0.12 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0.0 3.0.2 3.0.5 3.0.6 3.0.7 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 4.0.0 All 30 releases
← All changes | sequra.php +3 -4 3.2.04.3.0 View file →
@@ -7,9 +7,9 @@
7 7 * @wordpress-plugin
8 8 * Plugin Name: seQura
9 9 * Plugin URI: https://sequra.es/
10 10 * Description: seQura payment gateway for WooCommerce
11 - * Version: 3.2.0
11 + * Version: 4.3.0
12 12 * Author: "seQura Tech" <wordpress@sequra.com>
13 13 * Author URI: https://sequra.com/
14 14 * License: GPL-3.0+
15 15 * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
@@ -16,11 +16,11 @@
16 16 * Text Domain: sequra
17 17 * Domain Path: /languages
18 18 * Requires PHP: 7.3
19 19 * Requires at least: 5.9
20 - * Tested up to: 6.8.1
20 + * Tested up to: 6.9.4
21 21 * WC requires at least: 4.7.0
22 - * WC tested up to: 9.8.5
22 + * WC tested up to: 10.6.0
23 23 * Requires Plugins: woocommerce
24 24 */
25 25
26 26 defined( 'WPINC' ) || die;
@@ -35,9 +35,8 @@
35 35 *
36 36 * @var \SeQura\WC\Plugin $plugin
37 37 */
38 38 $plugin = \SeQura\Core\Infrastructure\ServiceRegister::getService( \SeQura\WC\Plugin::class );
39 -
40 39 register_activation_hook( __FILE__, array( $plugin, 'activate' ) );
41 40 register_deactivation_hook( __FILE__, array( $plugin, 'deactivate' ) );
42 41 }
43 42 );