-
Notifications
You must be signed in to change notification settings - Fork 0
/
pronamic-twinfield.php
40 lines (36 loc) · 1.02 KB
/
pronamic-twinfield.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Pronamic Twinfield
*
* @package Pronamic\WordPress\Twinfield\Plugin
* @author Pronamic
* @copyright 2021 Pronamic
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Pronamic Twinfield
* Plugin URI: https://www.pronamic.eu/plugins/twinfield/
* Description: Twinfield plugin for WordPress.
* Version: 1.0.0
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Pronamic
* Author URI: https://www.pronamic.eu/
* Text Domain: pronamic-twinfield
* Domain Path: /languages/
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
/**
* Autoload.
*/
require __DIR__ . '/vendor/autoload.php';
/**
* Action Scheduler.
*/
require __DIR__ . '/vendor/woocommerce/action-scheduler/action-scheduler.php';
/**
* Bootstrap.
*/
$pronamic_twinfield_plugin = Pronamic\WordPress\Twinfield\Plugin\Plugin::instance( __FILE__ );
$pronamic_twinfield_plugin->setup();