This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "mirko-pagliai/cakephp-recaptcha-mailhide",
"description": "A CakePHP plugin that allows you to hide email addresses using reCAPTCHA",
"homepage": "https://github.com/mirko-pagliai/cakephp-recaptcha-mailhide",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Mirko Pagliai",
"email": "mirko.pagliai@gmail.com"
}
],
"require": {
"php": ">=7.4",
"cakephp/cakephp": "~4.3",
"crabstudio/recaptcha": "~3.0.1",
"mirko-pagliai/php-tools": "~1.7.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"mirko-pagliai/me-tools": "~2.21",
"phpunit/phpunit": "^9.1|^9.5",
"phpstan/phpstan": "^1.7",
"psalm/phar": "^4.24"
},
"autoload": {
"psr-4": {
"RecaptchaMailhide\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/test_app/TestApp/",
"RecaptchaMailhide\\Test\\": "tests"
}
},
"scripts": {
"check": [
"@cs-check",
"@update-lowest",
"@test",
"@composer update",
"@test",
"@stan"
],
"cs-check": "phpcs --standard=phpcs.xml.dist",
"cs-fix": "phpcbf --standard=phpcs.xml.dist",
"test": "rm -f -r /tmp/cake* && phpunit",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=coverage",
"phpstan": "phpstan.phar analyse",
"psalm": "psalm.phar --php-version=8.0",
"stan": [
"@phpstan",
"@psalm"
],
"update-lowest": "@composer update --prefer-lowest"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}