-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.12 KB
/
composer.json
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
{
"name": "wearerequired/wp-cli-clear-opcache",
"description": "Use WP-CLI to clear the OPcache for a site via HTTP.",
"type": "wordpress-plugin",
"homepage": "https://github.com/wearerequired/wp-cli-clear-opcache",
"license": "GPL-2.0+",
"authors": [
{
"name": "required",
"email": "info@required.ch",
"homepage": "https://required.com",
"role": "Company"
},
{
"name": "Pascal Birchler",
"email": "pascal@required.ch",
"role": "Developer"
},
{
"name": "Dominik Schilling",
"email": "dominik@required.ch",
"role": "Developer"
}
],
"keywords": [
"wordpress",
"wp-cli",
"opcache"
],
"autoload": {
"files": [
"inc/namespace.php"
],
"psr-4": {
"Required\\ClearOpcache\\": "inc"
}
},
"require": {
"php": ">=7.0",
"ext-Zend-OPcache": "*"
},
"suggest": {
"wp-cli/wp-cli": "Adds a command line interface to WordPress"
}
}