-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.84 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.84 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nawawi/docket-cache",
"description": "A persistent object cache stored as a plain PHP code, accelerates caching with OPcache backend.",
"keywords": [
"object cache",
"cache",
"wordpress plugin",
"flat-file"
],
"type": "wordpress-plugin",
"license": "MIT",
"homepage": "https://github.com/nawawi/docket-cache",
"authors": [ {
"name": "Nawawi Jamili",
"email": "nawawijamili@gmail.com",
"homepage": "https://github.com/nawawi"
} ],
"repositories": [ {
"type": "vcs",
"url": "https://github.com/nawawi/docket-cache"
} ],
"support": {
"issues": "https://github.com/nawawi/docket-cache/issues",
"source": "https://github.com/nawawi/docket-cache"
},
"require": {
"php": ">=7.2.5",
"symfony/var-exporter": "^5.0"
},
"suggest": {
"ext-zend-opcache": "Recommended for better performance"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"wp i18n make-pot . languages/docket-cache.pot --exclude='dist/,wp-plugins-svn/'"
]
},
"autoload": {
"psr-4": {
"Nawawi\\DocketCache\\": "includes/src",
"Nawawi\\Symfony\\Polyfill\\Php80\\": "includes/vendor/symfony/polyfill-php80",
"Nawawi\\Symfony\\Component\\VarExporter\\": "includes/vendor/symfony/var-exporter"
},
"exclude-from-classmap": [
"/Tests/"
],
"classmap": [
"includes/src",
"includes/vendor/symfony/polyfill-php80/Resources/stubs"
],
"files": [
"includes/vendor/symfony/polyfill-php80/bootstrap.php"
]
},
"config": {
"vendor-dir": "includes/vendor",
"optimize-autoloader": true
}
}