| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* @package SimplyBook.me - Booking and reservations calendar |
| 5 |
* @author Really Simple Plugins |
| 6 |
* @copyright 2025 Really Simple Plugins |
| 7 |
* @license GPL-2.0-or-later |
| 8 |
* |
| 9 |
* @wordpress-plugin |
| 10 |
* Plugin Name: SimplyBook.me - Booking and reservations calendar |
| 11 |
* Plugin URI: https://help.simplybook.me/index.php?title=WordPress_integration |
| 12 |
* Description: Simply add a booking calendar to your site to schedule bookings, reservations, appointments and to collect payments. |
| 13 |
* Version: 3.4.0 |
| 14 |
* Requires at least: 6.6 |
| 15 |
* Requires PHP: 7.4 |
| 16 |
* Author: Really Simple Plugins |
| 17 |
* Author URI: https://really-simple-plugins.com |
| 18 |
* License: GPL v2 or later |
| 19 |
* Text Domain: simplybook |
| 20 |
* Domain Path: /assets/languages |
| 21 |
*/ |
| 22 |
|
| 23 |
/** |
| 24 |
* Load the Jetpack packages autoloader. |
| 25 |
* @see https://packagist.org/packages/automattic/jetpack-autoloader |
| 26 |
*/ |
| 27 |
require_once __DIR__ . '/vendor/autoload_packages.php'; |
| 28 |
|
| 29 |
// Boot the plugin. |
| 30 |
$plugin = new SimplyBook\Bootstrap\Plugin(); |
| 31 |
$plugin->boot(); |
| 32 |
|