-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.34 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "erwane/cakephp-hcaptcha",
"description": "HCaptcha plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"hcaptcha"
],
"license": "MIT",
"authors": [
{
"name": "Erwane Breton",
"email": "erwane@phea.fr",
"homepage": "https://erwane-breton.fr"
}
],
"support": {
"issues": "https://github.com/Erwane/cakephp-hcaptcha/issues",
"source": "https://github.com/Erwane/cakephp-hcaptcha"
},
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp": "^2.0",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"autoload": {
"psr-4": {
"HCaptcha\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HCaptcha\\Test\\": "tests/"
}
},
"scripts": {
"cscheck": "vendor/bin/phpcs -p src/ tests/",
"csfix": "vendor/bin/phpcbf -p src/ tests/"
},
"config": {
"platform-check": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}