PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / metricool.php

metricool.php in Metricool – Social media and site statistics trunk, at metricool.php

42 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @package Metricool
5 * @author Really Simple Plugins
6 * @copyright 2026 Really Simple Plugins
7 * @license GPL-2.0-or-later
8 *
9 * @wordpress-plugin
10 * Plugin Name: Metricool - Social media and site statistics
11 * Plugin URI: https://metricool.com/
12 * Description: Site metrics and social media analytics for Instagram, Facebook, YouTube, LinkedIn, X Twitter. The single best tool for Social Media Managers!
13 * Version: 2.1.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: metricool
20 * Domain Path: /assets/languages
21 */
22
23 if (!defined('ABSPATH')) {
24 exit;
25 }
26
27 /**
28 * Load the Composer autoloader for the plugin's own classes.
29 */
30 require_once __DIR__ . '/vendor/autoload.php';
31
32 /**
33 * Load the scoped (prefixed) dependencies to prevent conflicts
34 * with other plugins bundling the same packages.
35 * @see https://packagist.org/packages/wpify/scoper
36 */
37 require_once __DIR__ . '/vendor/_scoped/scoper-autoload.php';
38
39 // Boot the plugin.
40 $plugin = new Metricool\Bootstrap\Plugin();
41 $plugin->boot();
42