/home/arranoyd/energyclinic.com.hr/wp-content/plugins/docket-cache/docket-cache.php
<?php
/**
 * Docket Cache.
 *
 * @author  Nawawi Jamili
 * @license MIT
 *
 * @see    https://github.com/nawawi/docket-cache
 */

/**
 * @wordpress-plugin
 * Plugin Name:         Docket Cache
 * Plugin URI:          https://docketcache.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
 * Version:             24.07.03
 * VerPrev:             24.07.02
 * Description:         A persistent object cache stored as a plain PHP code, accelerates caching with OPcache backend.
 * GitHub Plugin URI:   https://github.com/nawawi/docket-cache
 * Author:              Nawawi Jamili
 * Author URI:          https://docketcache.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
 * Requires at least:   5.4
 * Requires PHP:        7.2.5
 * Network:             true
 * License:             MIT
 * License URI:         https://github.com/nawawi/docket-cache/blob/master/LICENSE.txt
 * Text Domain:         docket-cache
 * Domain Path:         /languages
 */

namespace Nawawi\DocketCache;

\defined('ABSPATH') && !\defined('DOCKET_CACHE_FILE') || exit;

\define('DOCKET_CACHE_FILE', __FILE__);
require __DIR__.'/includes/load.php';
( new Plugin() )->register();