forked from wp-media/wp-rocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.79 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
63
64
65
66
67
68
69
70
71
{
"name": "wp-media/wp-rocket",
"description": "Performance optimization plugin for WordPress",
"keywords": [
"wordpress",
"cache",
"minification",
"lazyload"
],
"homepage": "https://wp-rocket.me",
"license": "GPL-2.0+",
"authors": [
{
"name": "WP Media",
"email": "[email protected]",
"homepage": "https://wp-media.me"
}
],
"type": "wordpress-plugin",
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/wp-media/wp-rocket/issues",
"source": "https://github.com/wp-media/wp-rocket"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tabrisrp/wp-background-processing"
}
],
"require": {
"php": ">=5.4.0",
"a5hleyrich/wp-background-processing": "1.3",
"composer/installers": "~1.0",
"jamesryanbell/cloudflare": "^1.11",
"league/container": "2.4.1",
"matthiasmullie/minify": "1.3.*",
"monolog/monolog": "^1.0",
"wp-media/rocket-lazyload-common": "^2.2"
},
"require-dev": {
"brain/monkey": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.2",
"wp-coding-standards/wpcs": "^2.1.0"
},
"autoload": {
"classmap": [
"inc/classes",
"inc/vendors/classes"
],
"exclude-from-classmap": [
"inc/vendors/classes/class-rocket-mobile-detect.php",
"inc/classes/class-wp-rocket-requirements-check.php"
]
},
"autoload-dev": {
"psr-4": {
"WP_Rocket\\Tests\\Unit\\": "tests/Unit",
"WP_Rocket\\Tests\\Integration\\": "tests/Integration"
}
},
"scripts": {
"test-unit":"\"vendor/bin/phpunit\" --testsuite unit --colors=always",
"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --colors=always --configuration tests/Integration/phpunit.xml.dist"
}
}