|
1 | 1 | { |
2 | 2 | "$schema": "https://getcomposer.org/schema.json", |
3 | | - "name": "chillerlan/php-library-template-nodocs", |
4 | | - "description": "A PHP Library template/boilerplate.", |
| 3 | + "name": "chillerlan/2fa-qrcode-bundle", |
| 4 | + "description": "An authenticator and a QR Code generator bundled together for MFA in frameworks and applications.", |
5 | 5 | "license": "MIT", |
6 | 6 | "type": "library", |
7 | | - "keywords": ["boilerplate", "library-template"], |
| 7 | + "keywords": [ |
| 8 | + "2fa", "authenticator", "qrcode", "google2fa", "hotp", "mfa", |
| 9 | + "otp", "rfc4226", "rfc6238", "tfa", "totp", "two factor" |
| 10 | + ], |
8 | 11 | "authors": [ |
9 | 12 | { |
10 | 13 | "name": "smiley", |
|
13 | 16 | }, |
14 | 17 | { |
15 | 18 | "name": "Contributors", |
16 | | - "homepage":"https://github.com/chillerlan/php-library-template-nodocs/graphs/contributors" |
| 19 | + "homepage":"https://github.com/chillerlan/2fa-qrcode-bundle/graphs/contributors" |
17 | 20 | } |
18 | 21 | ], |
19 | 22 | "funding": [ |
|
22 | 25 | "url": "https://ko-fi.com/codemasher" |
23 | 26 | } |
24 | 27 | ], |
25 | | - "homepage": "https://github.com/chillerlan/php-library-template-nodocs", |
| 28 | + "homepage": "https://github.com/chillerlan/2fa-qrcode-bundle", |
26 | 29 | "support": { |
27 | | - "issues": "https://github.com/chillerlan/php-library-template-nodocs/issues", |
28 | | - "source": "https://github.com/chillerlan/php-library-template-nodocs" |
| 30 | + "issues": "https://github.com/chillerlan/2fa-qrcode-bundle/issues", |
| 31 | + "source": "https://github.com/chillerlan/2fa-qrcode-bundle" |
29 | 32 | }, |
30 | 33 | "minimum-stability": "stable", |
31 | 34 | "prefer-stable": true, |
32 | 35 | "require": { |
33 | | - "php": "^8.1" |
| 36 | + "php": "^7.4 || ^8.0", |
| 37 | + "chillerlan/php-authenticator": "^4.5.0", |
| 38 | + "chillerlan/php-qrcode": "^5.0.5", |
| 39 | + "chillerlan/php-settings-container": "^2.1.6" |
34 | 40 | }, |
35 | 41 | "require-dev": { |
36 | | - "phan/phan": "^5.5.0", |
| 42 | + "phan/phan": "^5.5.2", |
37 | 43 | "phpmd/phpmd": "^2.15", |
38 | | - "phpstan/phpstan": "^2.1.22", |
39 | | - "phpstan/phpstan-deprecation-rules": "^2.0.3", |
40 | | - "phpunit/phpunit": "^10.5", |
41 | | - "slevomat/coding-standard": "^8.15", |
42 | | - "squizlabs/php_codesniffer": "^3.10" |
43 | | - }, |
44 | | - "suggest": { |
| 44 | + "phpunit/phpunit": "^9.6", |
| 45 | + "slevomat/coding-standard": "^8.28", |
| 46 | + "squizlabs/php_codesniffer": "^4.0" |
45 | 47 | }, |
46 | 48 | "autoload": { |
47 | 49 | "psr-4": { |
48 | | - "chillerlan\\LibraryTemplate\\": "src" |
| 50 | + "chillerlan\\TwoFactorQRCode\\": "src" |
49 | 51 | } |
50 | 52 | }, |
51 | 53 | "autoload-dev": { |
52 | 54 | "psr-4": { |
53 | | - "chillerlan\\LibraryTemplateTest\\": "tests" |
| 55 | + "chillerlan\\TwoFactorQRCodeTest\\": "tests" |
54 | 56 | } |
55 | 57 | }, |
56 | 58 | "scripts": { |
57 | 59 | "phan": "@php vendor/bin/phan", |
58 | 60 | "phpcs": "@php vendor/bin/phpcs -v", |
59 | | - "phpstan": "@php vendor/bin/phpstan", |
60 | | - "phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline", |
61 | 61 | "phpunit": "@php vendor/bin/phpunit" |
62 | 62 | }, |
63 | 63 | "config": { |
|
0 commit comments