-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "ephpm/cache-wordpress",
"description": "WordPress object-cache drop-in backed by ePHPm's in-process KV store via the ephpm_kv_* SAPI functions — zero socket round-trips, real wp_cache_flush() via ephpm_kv_flush_all().",
"type": "wordpress-dropin",
"license": "MIT",
"keywords": ["wordpress", "cache", "ephpm", "kv", "sapi", "object-cache"],
"homepage": "https://ephpm.dev",
"support": {
"issues": "https://github.com/ephpm/cache-wordpress/issues",
"source": "https://github.com/ephpm/cache-wordpress"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0"
},
"autoload": {
"psr-4": {
"Ephpm\\Cache\\WordPress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ephpm\\Cache\\WordPress\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable"
}