|
1 | | -{ |
2 | | - "name": "infocyph/otp", |
3 | | - "description": "Simple & Secure Generic OTP, OCRA (RFC6287), TOTP (RFC6238) & HOTP (RFC4226) solution!", |
4 | | - "type": "library", |
5 | | - "license": "MIT", |
6 | | - "authors": [ |
7 | | - { |
8 | | - "name": "abmmhasan", |
9 | | - "email": "abmmhasan@gmail.com" |
10 | | - } |
11 | | - ], |
12 | | - "keywords": [ |
13 | | - "otp", |
14 | | - "hotp", |
15 | | - "totp", |
16 | | - "hmac", |
17 | | - "sha", |
18 | | - "ocra", |
19 | | - "rfc4226", |
20 | | - "rfc6238", |
21 | | - "rfc6287", |
22 | | - "sms-otp", |
23 | | - "email-otp" |
24 | | - ], |
25 | | - "autoload": { |
26 | | - "psr-4": { |
27 | | - "Infocyph\\OTP\\": "src/" |
28 | | - } |
29 | | - }, |
30 | | - "minimum-stability": "stable", |
31 | | - "prefer-stable": true, |
32 | | - "config": { |
33 | | - "sort-packages": true, |
34 | | - "optimize-autoloader": true, |
35 | | - "allow-plugins": { |
36 | | - "pestphp/pest-plugin": true |
37 | | - } |
38 | | - }, |
39 | | - "require": { |
40 | | - "php": ">=8.2", |
41 | | - "bacon/bacon-qr-code": "^3.0", |
42 | | - "paragonie/constant_time_encoding": "^3.0", |
43 | | - "symfony/cache": "^7.0" |
44 | | - }, |
45 | | - "require-dev": { |
46 | | - "captainhook/captainhook": "^5.23", |
47 | | - "laravel/pint": "^1.15", |
48 | | - "pestphp/pest": "^2.34", |
49 | | - "rector/rector": "^1.0", |
50 | | - "symfony/var-dumper": "^7.0" |
51 | | - }, |
52 | | - "scripts": { |
53 | | - "test:code": "pest --parallel --processes=10", |
54 | | - "test:refactor": "rector process --dry-run", |
55 | | - "test:lint": "pint --test", |
56 | | - "test:hook": [ |
57 | | - "captainhook hook:post-checkout", |
58 | | - "captainhook hook:pre-commit", |
59 | | - "captainhook hook:post-commit", |
60 | | - "captainhook hook:post-merge", |
61 | | - "captainhook hook:post-rewrite", |
62 | | - "captainhook hook:pre-push" |
63 | | - ], |
64 | | - "tests": [ |
65 | | - "@test:code", |
66 | | - "@test:lint", |
67 | | - "@test:refactor" |
68 | | - ], |
69 | | - "git:hook": "captainhook install --only-enabled -nf", |
70 | | - "test": "pest", |
71 | | - "refactor": "rector process", |
72 | | - "lint": "pint", |
73 | | - "post-autoload-dump": "@git:hook" |
74 | | - } |
75 | | -} |
| 1 | +{ |
| 2 | + "name": "infocyph/otp", |
| 3 | + "description": "Simple & Secure Generic OTP, OCRA (RFC6287), TOTP (RFC6238) & HOTP (RFC4226) solution!", |
| 4 | + "type": "library", |
| 5 | + "license": "MIT", |
| 6 | + "authors": [ |
| 7 | + { |
| 8 | + "name": "abmmhasan", |
| 9 | + "email": "abmmhasan@gmail.com" |
| 10 | + } |
| 11 | + ], |
| 12 | + "keywords": [ |
| 13 | + "otp", |
| 14 | + "hotp", |
| 15 | + "totp", |
| 16 | + "hmac", |
| 17 | + "sha", |
| 18 | + "ocra", |
| 19 | + "rfc4226", |
| 20 | + "rfc6238", |
| 21 | + "rfc6287", |
| 22 | + "sms-otp", |
| 23 | + "email-otp" |
| 24 | + ], |
| 25 | + "autoload": { |
| 26 | + "psr-4": { |
| 27 | + "Infocyph\\OTP\\": "src/" |
| 28 | + } |
| 29 | + }, |
| 30 | + "minimum-stability": "stable", |
| 31 | + "prefer-stable": true, |
| 32 | + "config": { |
| 33 | + "sort-packages": true, |
| 34 | + "optimize-autoloader": true, |
| 35 | + "allow-plugins": { |
| 36 | + "pestphp/pest-plugin": true |
| 37 | + } |
| 38 | + }, |
| 39 | + "require": { |
| 40 | + "php": ">=8.2", |
| 41 | + "bacon/bacon-qr-code": "^3.0", |
| 42 | + "paragonie/constant_time_encoding": "^3.0", |
| 43 | + "symfony/cache": "^7.0" |
| 44 | + }, |
| 45 | + "require-dev": { |
| 46 | + "captainhook/captainhook": "^5.27", |
| 47 | + "laravel/pint": "^1.27", |
| 48 | + "pestphp/pest": "^4.3", |
| 49 | + "rector/rector": "^2.3", |
| 50 | + "symfony/var-dumper": "^7.4" |
| 51 | + }, |
| 52 | + "scripts": { |
| 53 | + "test:code": "pest --parallel --processes=10", |
| 54 | + "test:refactor": "rector process --dry-run", |
| 55 | + "test:lint": "pint --test", |
| 56 | + "test:hook": [ |
| 57 | + "captainhook hook:post-checkout", |
| 58 | + "captainhook hook:pre-commit", |
| 59 | + "captainhook hook:post-commit", |
| 60 | + "captainhook hook:post-merge", |
| 61 | + "captainhook hook:post-rewrite", |
| 62 | + "captainhook hook:pre-push" |
| 63 | + ], |
| 64 | + "tests": [ |
| 65 | + "@test:code", |
| 66 | + "@test:lint", |
| 67 | + "@test:refactor" |
| 68 | + ], |
| 69 | + "git:hook": "captainhook install --only-enabled -nf", |
| 70 | + "test": "pest", |
| 71 | + "refactor": "rector process", |
| 72 | + "lint": "pint", |
| 73 | + "post-autoload-dump": "captainhook install --only-enabled -nf" |
| 74 | + } |
| 75 | +} |
0 commit comments