forked from nojimage/cakephp-login-attempts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1012 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 1012 Bytes
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
{
"name": "nojimage/cakephp-login-attempts",
"description": "LoginAttempts plugin for CakePHP 3",
"type": "cakephp-plugin",
"license": ["MIT"],
"require": {
"php": ">=5.6",
"cakephp/cakephp": "~3.5"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.1",
"phpunit/phpunit": "^5.7.14|^6.0"
},
"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": {
"cs-check": "phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests"
},
"config": {
"sort-packages": true
}
}