-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
84 lines (84 loc) · 2.26 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
80
81
82
83
84
{
"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,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": 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": ">=7.3",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"psr/container": "1.0.0",
"brain/monkey": "^2.0",
"coenjacobs/mozart": "^0.7.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"phpunit/phpunit": "^7.5 || ^8 || ^9",
"wp-coding-standards/wpcs": "^2.0.0",
"wp-launchpad/core": "^0.2.6",
"wp-launchpad/framework-options": "^0.1.3",
"wp-media/phpunit": "^3.0",
"wp-media/rocket-lazyload-common": "^3.0"
},
"extra": {
"mozart": {
"dep_namespace": "RocketLazyLoadPlugin\\Dependencies\\",
"dep_directory": "/src/Dependencies/",
"classmap_directory": "/classes/dependencies/",
"classmap_prefix": "RLLP_",
"packages": [
"wp-media/rocket-lazyload-common",
"league/container",
"wp-launchpad/core",
"wp-launchpad/framework-options"
],
"delete_vendor_directories": true
}
},
"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",
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
]
}
}