forked from wp-media/rocket-lazy-load
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.42 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
{
"name": "wp-media/rocket-lazy-load",
"description": "Lazy Load images and iframes without jQuery",
"keywords": [
"wordpress",
"lazyload"
],
"homepage": "https://github.com/wp-media/rocket-lazy-load",
"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/rocket-lazy-load/issues",
"source": "https://github.com/wp-media/rocket-lazy-load"
},
"autoload": {
"psr-4": {
"RocketLazyLoadPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RocketLazyLoadPlugin\\Tests\\Unit\\": "tests/Unit",
"RocketLazyLoadPlugin\\Tests\\Integration\\": "tests/Integration"
}
},
"require": {
"php": ">=5.6",
"composer/installers": "~1.0",
"league/container": "^2.4",
"wp-media/rocket-lazyload-common": "^2.0"
},
"require-dev": {
"brain/monkey": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"phpunit/phpunit": "^5.7",
"wp-coding-standards/wpcs": "^2.0.0"
},
"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"
}
}