-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"name": "wpcontrib/mail",
"description": "Mail plugin from the WordPress Contrib Team, which is a collection of standalone mail features.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"mail",
"wordpress",
"wpcontrib"
],
"require-dev": {
"squizlabs/php_codesniffer": "^3.13",
"phpcompatibility/php-compatibility": "^9.3",
"slevomat/coding-standard": "^8.20",
"dealerdirect/phpcodesniffer-composer-installer": "^1.1",
"wpackagist-plugin/plugin-check": "^1.6",
"wp-coding-standards/wpcs": "^3.2"
},
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"wpackagist-plugin/plugin-check"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}