composer.json
{
"name": "laragear/two-factor",
"description": "On-premises 2FA Authentication for out-of-the-box.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"laravel",
"authentication",
"2fa",
"two-factor",
"authentication"
],
"authors": [
{
"name": "Italo Israel Baeza Cabrera",
"email": "darkghosthunter@gmail.com",
"homepage": "https://patreon.com/packagesforlaravel"
}
],
"support": {
"source": "https://github.com/Laragear/TwoFactor",
"issues": "https://github.com/Laragear/TwoFactor/issues"
},
"require": {
"php": "8.*",
"ext-json": "*",
"laragear/meta": "^2.1.0",
"bacon/bacon-qr-code": "2.*",
"paragonie/constant_time_encoding": "^2.5",
"illuminate/config": "9.*|10.*",
"illuminate/validation": "9.*|10.*",
"illuminate/database": "9.*|10.*",
"illuminate/support": "9.*|10.*",
"illuminate/http": "9.*|10.*",
"illuminate/auth": "9.*|10.*"
},
"require-dev": {
"laragear/meta-testing": "^1.3.1",
"orchestra/testbench": "^7.22|8.*"
},
"autoload": {
"psr-4": {
"Laragear\\TwoFactor\\": "src",
"Database\\Factories\\Laragear\\TwoFactor\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Laragear\\TwoFactor\\TwoFactorServiceProvider"
]
}
},
"funding": [
{
"type": "Patreon",
"url": "https://patreon.com/PackagesForLaravel"
},
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/DarkGhostHunter"
},
{
"type": "Buy me a cofee",
"url": "https://www.buymeacoffee.com/darkghosthunter"
},
{
"type": "Paypal",
"url": "https://paypal.me/darkghosthunter"
}
]
}