-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocket-cache.php
More file actions
36 lines (32 loc) · 1.16 KB
/
docket-cache.php
File metadata and controls
36 lines (32 loc) · 1.16 KB
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
35
36
<?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.07
* VerPrev: 24.07.06
* 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();