-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "cleantalk/contacts-encoder",
"description": "Email obfuscation for email addresses and phone numbers. Stops smart bots via the CleanTalk anti-spam cloud. Works with any framework or plain HTML.",
"homepage": "https://cleantalk.org/contact-encoder",
"keywords": [
"email-obfuscation",
"email-protection",
"anti-spam",
"spam-protection",
"bot-protection",
"phone-number",
"contact-form",
"privacy",
"gdpr",
"mailto"
],
"support": {
"issues": "https://github.com/CleanTalk/contacts-encoder/issues",
"source": "https://github.com/CleanTalk/contacts-encoder"
},
"authors": [
{
"name": "CleanTalk Team",
"email": "plugins@cleantalk.org"
}
],
"license": "GPL-3.0-or-later",
"require": {
"cleantalk/antispam": "^1.6"
},
"require-dev": {
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^8.5.52",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "@dev"
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration tests/phpunit.xml",
"vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"vendor/bin/phpcs --standard=tests/.phpcs.xml",
"vendor/bin/psalm --no-cache --config=tests/psalm.xml",
"vendor/bin/psalm --no-cache --config=tests/psalm.xml --taint-analysis"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cleantalk/apbct-installer": false
}
},
"autoload": {
"psr-4": {
"Cleantalk\\Common\\ContactsEncoder\\": "./"
}
}
}