-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.64 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.64 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
54
55
{
"name": "salines/cakephp-verification",
"description": "Verification and step-up authentication for CakePHP 5: email verification links, Email OTP, SMS OTP, and TOTP.",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": ["cakephp", "plugin", "verification", "authentication", "otp", "totp", "2fa", "mfa", "sms", "email"],
"require": {
"php": "^8.2",
"cakephp/cakephp": "^5.3",
"cakephp/authentication": "^4.0"
},
"autoload": {
"psr-4": {
"CakeVerification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeVerification\\Test\\": "tests/"
}
},
"suggest": {
"bacon/bacon-qr-code": "Required to render TOTP QR codes as SVG via VerificationHelper::qrCode()"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"cakephp/cakephp-codesniffer": "^5.2",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"test": "phpunit",
"cs": "phpcs -p",
"cbf": "phpcbf",
"stan": "phpstan analyse --memory-limit=512M"
},
"support": {
"issues": "https://github.com/salines/cakephp-verification/issues",
"source": "https://github.com/salines/cakephp-verification",
"docs": "https://github.com/salines/cakephp-verification/tree/main/docs"
},
"funding": [
{
"type": "custom",
"url": "https://www.paypal.me/paradzikn"
}
],
"extra": {
"installer-name": "CakeVerification"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}