-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
62 lines (62 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "poweredcache/powered-cache",
"description": "Comprehensive caching and performance plugin for WordPress.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "poweredcache",
"email": "[email protected]",
"homepage": "https://poweredcache.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2"
},
"autoload": {
"psr-4": {
"PoweredCache\\": "includes/classes/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"10up/wp_mock": "dev-trunk",
"10up/phpcs-composer": "dev-master",
"coenjacobs/mozart": "^0.7.1",
"matthiasmullie/minify": "^1.3",
"deliciousbrains/wp-background-processing": "^1.3",
"voku/html-min": "^4.5"
},
"scripts": {
"lint": "phpcs powered-cache.php uninstall.php ./includes -s",
"lint-fix": "phpcbf powered-cache.php uninstall.php ./includes",
"setup-local-tests": "bash bin/install-wp-tests.sh pc_wp_test root root localhost trunk true",
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
]
},
"extra": {
"mozart": {
"dep_namespace": "PoweredCache\\Dependencies\\",
"dep_directory": "/includes/classes/Dependencies/",
"classmap_directory": "/includes/package/",
"classmap_prefix": "Powered_Cache_",
"packages": [
"matthiasmullie/minify",
"deliciousbrains/wp-background-processing",
"voku/html-min"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}