PluginProbe
Site Reviews / trunk
Site Reviews vtrunk
8.3.0 8.2.2 8.2.1 8.2.0 8.1.0 8.0.13 8.0.12 8.0.11 trunk 1.2.2 2.17.1 3.5.4 4.7.0 5.25.1 6.11.8 7.0.10 7.0.11 7.0.12 7.0.13 7.0.14 7.0.15 7.0.16 7.0.17 7.0.18 7.0.5 All 53 releases
site-reviews / site-reviews.php

site-reviews.php in Site Reviews trunk, at site-reviews.php

37 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗
4 * ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗
5 * ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝.
6 *
7 * Plugin Name: Site Reviews
8 * Plugin URI: https://wordpress.org/plugins/site-reviews
9 * Description: Receive and display reviews on your website
10 * Version: 8.3.0
11 * Author: Paul Ryley
12 * Author URI: https://site-reviews.com
13 * License: GPL3
14 * License URI: https://www.gnu.org/licenses/gpl-3.0.html
15 * Requires at least: 6.8
16 * Requires PHP: 8.1.2
17 * Text Domain: site-reviews
18 * Domain Path: languages
19 * WC requires at least: 9.6
20 * WC tested up to: 11.1
21 */
22 defined('ABSPATH') || exit;
23
24 require_once __DIR__.'/autoload.php';
25 require_once __DIR__.'/compatibility.php';
26 require_once __DIR__.'/deprecated.php';
27 require_once __DIR__.'/helpers.php';
28 require_once __DIR__.'/migration.php';
29
30 $app = GeminiLabs\SiteReviews\Application::load();
31 $app->make('Provider')->register($app);
32 $app->init();
33
34 new GeminiLabs\SiteReviews\CLI();
35
36 register_shutdown_function([$app, 'catchFatalError']);
37