-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimplybook.php
More file actions
31 lines (28 loc) · 977 Bytes
/
simplybook.php
File metadata and controls
31 lines (28 loc) · 977 Bytes
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
<?php
/**
* @package SimplyBook.me - Booking and reservations calendar
* @author Really Simple Plugins
* @copyright 2025 Really Simple Plugins
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: SimplyBook.me - Booking and reservations calendar
* Plugin URI: https://help.simplybook.me/index.php?title=WordPress_integration
* Description: Simply add a booking calendar to your site to schedule bookings, reservations, appointments and to collect payments.
* Version: 3.3.0
* Requires at least: 6.6
* Requires PHP: 7.4
* Author: Really Simple Plugins
* Author URI: https://really-simple-plugins.com
* License: GPL v2 or later
* Text Domain: simplybook
* Domain Path: /assets/languages
*/
/**
* Load the Jetpack packages autoloader.
* @see https://packagist.org/packages/automattic/jetpack-autoloader
*/
require_once __DIR__ . '/vendor/autoload_packages.php';
// Boot the plugin.
$plugin = new SimplyBook\Bootstrap\Plugin();
$plugin->boot();