-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.1 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": "cleantalk/cleantalk-php-lib",
"description": "CleanTalk Anti-Spam php library",
"type": "cleantalk-apbct-lib",
"authors": [
{
"name": "CleanTalk Team",
"email": "support@cleantalk.org"
}
],
"require": {
"cleantalk-apbct/installer": "*"
},
"require-dev": {
"phpunit/phpunit": "7.*",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"Cleantalk\\Common\\": "Common/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/CleanTalk/apbct-installer-composer-plugin"
}
],
"config": {
"allow-plugins": {
"cleantalk-apbct/installer": true
}
},
"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"
]
}
}