forked from wp-media/imagify-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.35 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
72
73
74
75
76
77
78
79
{
"name": "wp-media/imagify-plugin",
"description": "Image optimization plugin for WordPress by WP Media.",
"keywords": [
"wordpress",
"images",
"optimization",
"performance"
],
"homepage": "https://imagify.io",
"license": "GPL-2.0",
"authors": [
{
"name": "WP Media",
"homepage": "https://wp-media.me/"
},
{
"name": "Grégory Viguier",
"role": "Developer"
}
],
"type": "wordpress-plugin",
"config": {
"classloader-suffix": "WPMediaImagifyWordPressPlugin",
"classmap-authoritative": true,
"sort-packages": true
},
"support": {
"issues": "https://github.com/wp-media/imagify-plugin/issues",
"source": "https://github.com/wp-media/imagify-plugin"
},
"require": {
"php": ">=5.4.0",
"a5hleyrich/wp-background-processing": "~1.0",
"composer/installers": "~1.0",
"dangoodman/composer-for-wordpress": "^2.0"
},
"require-dev": {
"php": "^5.6 || ^7",
"brain/monkey": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^5.7 || ^7",
"squizlabs/php_codesniffer": "^3.2",
"wp-coding-standards/wpcs": "~1.2"
},
"autoload": {
"psr-4": {
"Imagify\\": "classes/",
"Imagify\\Deprecated\\Traits\\": "inc/deprecated/Traits/",
"Imagify\\ThirdParty\\AS3CF\\": "inc/3rd-party/amazon-s3-and-cloudfront/classes/",
"Imagify\\ThirdParty\\EnableMediaReplace\\": "inc/3rd-party/enable-media-replace/classes/",
"Imagify\\ThirdParty\\FormidablePro\\": "inc/3rd-party/formidable-pro/classes/",
"Imagify\\ThirdParty\\NGG\\": "inc/3rd-party/nextgen-gallery/classes/",
"Imagify\\ThirdParty\\RegenerateThumbnails\\": "inc/3rd-party/regenerate-thumbnails/classes/",
"Imagify\\ThirdParty\\WPRocket\\": "inc/3rd-party/wp-rocket/classes/"
},
"classmap": [
"inc/classes",
"inc/deprecated/classes"
],
"exclude-from-classmap": [
"inc/classes/class-imagify-plugin.php",
"inc/classes/class-imagify-requirements-check.php",
"/Tests/"
]
},
"autoload-dev": {
"psr-4": { "Imagify\\Tests\\": "Tests/" }
},
"scripts": {
"test-unit":"\"vendor/bin/phpunit\" --testsuite unit --colors=always --configuration Tests/Unit/phpunit.xml.dist",
"test-integration": "\"vendor/bin/phpunit\" --testsuite integration --colors=always --configuration Tests/Integration/phpunit.xml.dist",
"run-tests": [
"@test-unit",
"@test-integration"
]
}
}