PluginProbe
seQura / trunk
seQura vtrunk
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
sequra / sequra.php

sequra.php in seQura trunk, at sequra.php

43 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The plugin bootstrap file
4 *
5 * @package SeQura/WC
6 *
7 * @wordpress-plugin
8 * Plugin Name: seQura
9 * Plugin URI: https://sequra.es/
10 * Description: seQura payment gateway for WooCommerce
11 * Version: 4.3.4
12 * Author: "seQura Tech" <wordpress@sequra.com>
13 * Author URI: https://sequra.com/
14 * License: GPL-3.0+
15 * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
16 * Text Domain: sequra
17 * Domain Path: /languages
18 * Requires PHP: 7.3
19 * Requires at least: 5.9
20 * Tested up to: 7.1.0
21 * WC requires at least: 4.7.0
22 * WC tested up to: 11.0.1
23 * Requires Plugins: woocommerce
24 */
25
26 defined( 'WPINC' ) || die;
27
28 require plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
29
30 call_user_func(
31 function () {
32 \SeQura\WC\Bootstrap::init();
33 /**
34 * The instance of the plugin.
35 *
36 * @var \SeQura\WC\Plugin $plugin
37 */
38 $plugin = \SeQura\Core\Infrastructure\ServiceRegister::getService( \SeQura\WC\Plugin::class );
39 register_activation_hook( __FILE__, array( $plugin, 'activate' ) );
40 register_deactivation_hook( __FILE__, array( $plugin, 'deactivate' ) );
41 }
42 );
43