-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 1.12 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
{
"name": "boxuk/wordpress-email-tld-checker",
"description": "A small WordPress plugin to validate email addresses against valid TLDs.",
"keywords" : ["wordpress", "email"],
"type": "wordpress-plugin",
"require": {
"php": "^7.2",
"symfony/polyfill-intl-idn": "^1.12",
"arubacao/tld-checker": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"automattic/vipwpcs": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"automattic/phpcs-neutron-standard": "^1.5",
"squizlabs/php_codesniffer": "^3.4"
},
"license": "MIT",
"authors": [
{
"name": "Ian Jenkins",
"email": "ian.jenkins@boxuk.com"
}
],
"minimum-stability": "stable",
"autoload": {
"files": [
"functions.php"
]
},
"suggest": {
"ext-intl": "Use the intl extension rather than the polyfill for converting domain names to IDNA ASCII form.",
"composer/installers": "To ensure this package is installed in the appropriate place for a WordPress plugin."
}
}