-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.36 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "nojimage/cakephp-login-attempts",
"description": "LoginAttempts plugin for CakePHP",
"type": "cakephp-plugin",
"license": ["MIT"],
"require": {
"php": "^8.1",
"cakephp/authentication": "^3.0",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/migrations": "^4.0 || ^5.0",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5.5 || ^11.1.3 || ^12.0.9"
},
"suggest": {
"cakephp/authentication": "To use FormAuthenticator."
},
"autoload": {
"psr-4": {
"LoginAttempts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LoginAttempts\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@stan",
"@test"
],
"cs-check": "phpcs -p --extensions=php ./src ./tests",
"cs-fix": "phpcbf -p --extensions=php ./src ./tests",
"stan": "phpstan analyse",
"test": "phpunit --colors=always",
"update-lowest": "composer update --prefer-lowest --prefer-stable"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}