-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
46 lines (46 loc) · 1.47 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
{
"name": "cleantalk/php-antispam",
"description": "PHP API for antispam service cleantalk.org. Invisible protection from spam, no captches, no puzzles, no animals and no math.",
"license": "GPL-3.0",
"support": {
"email": "welcome@cleantalk.org"
},
"homepage": "http://cleantalk.org",
"keywords": ["spam", "anti-spam", "antispam", "api"],
"autoload": {
"psr-4": {
"Cleantalk\\": "lib"
},
"files": [
"lib/cleantalk-php-patch.php"
]
},
"require-dev": {
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "@dev",
"yoast/phpunit-polyfills": "^1.0",
"ext-dom": "*",
"wp-cli/wp-cli-bundle": "*"
},
"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=psalm.xml"
],
"psalm_l1": [
"vendor/bin/psalm --no-cache --config=psalm.xml"
],
"just_phpunit": [
"vendor/bin/phpunit --configuration tests/phpunit.xml --debug"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}