-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
site-reviews.php
34 lines (31 loc) · 1.19 KB
/
site-reviews.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
<?php
/**
* ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗
* ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗
* ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝.
*
* Plugin Name: Site Reviews
* Plugin URI: https://wordpress.org/plugins/site-reviews
* Description: Receive and display reviews on your website
* Version: 7.2.3
* Author: Paul Ryley
* Author URI: https://geminilabs.io
* License: GPL3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Requires at least: 6.1
* Requires PHP: 7.4
* Text Domain: site-reviews
* Domain Path: languages
* WC requires at least: 6.4
* WC tested up to: 9.3
*/
defined('ABSPATH') || exit;
require_once __DIR__.'/autoload.php';
require_once __DIR__.'/compatibility.php';
require_once __DIR__.'/deprecated.php';
require_once __DIR__.'/helpers.php';
require_once __DIR__.'/migration.php';
$app = GeminiLabs\SiteReviews\Application::load();
$app->make('Provider')->register($app);
$app->init();
register_shutdown_function([$app, 'catchFatalError']);