mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 00:03:09 +01:00
129 lines
3.8 KiB
JSON
129 lines
3.8 KiB
JSON
{
|
|
"name": "bubka/2fauth",
|
|
"type": "project",
|
|
"description": "Two-Factor authentication generator",
|
|
"keywords": [
|
|
"2fauth",
|
|
"two-factor authentication"
|
|
],
|
|
"license": "MIT",
|
|
"repositories": [
|
|
{
|
|
"type": "vcs",
|
|
"url": "https://github.com/Bubka/Laravel-Dotenv-Editor.git"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-bcmath": "*",
|
|
"ext-ctype": "*",
|
|
"ext-dom": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-gd": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-openssl": "*",
|
|
"ext-session": "*",
|
|
"ext-tokenizer": "*",
|
|
"ext-xml": "*",
|
|
"chillerlan/php-qrcode": "^5.0",
|
|
"doctormckay/steam-totp": "^1.0",
|
|
"enshrined/svg-sanitize": "^0.20.0",
|
|
"google/protobuf": "^4.26",
|
|
"jackiedo/dotenv-editor": "dev-master",
|
|
"jenssegers/agent": "^2.6",
|
|
"khanamiryan/qrcode-detector-decoder": "^2.0.2",
|
|
"laragear/webauthn": "^2.0",
|
|
"laravel/framework": "^11.9",
|
|
"laravel/passport": "^12.0",
|
|
"laravel/socialite": "^5.10",
|
|
"laravel/tinker": "^2.9",
|
|
"laravel/ui": "^4.2",
|
|
"paragonie/constant_time_encoding": "^2.6",
|
|
"socialiteproviders/manager": "^4.4",
|
|
"spatie/eloquent-sortable": "^4.0.1",
|
|
"spomky-labs/otphp": "^11.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^3.0",
|
|
"brianium/paratest": "^7.5",
|
|
"fakerphp/faker": "^1.21",
|
|
"larastan/larastan": "^2.9",
|
|
"laravel/pint": "^1.16",
|
|
"mockery/mockery": "^1.6",
|
|
"nunomaduro/collision": "^8.1",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpunit/phpunit": "^11.0.10"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"test": [
|
|
"php artisan config:clear",
|
|
"vendor/bin/phpunit",
|
|
"php artisan config:clear"
|
|
],
|
|
"test-para": [
|
|
"php artisan config:clear",
|
|
"php artisan test --parallel",
|
|
"php artisan config:clear"
|
|
],
|
|
"test-mysql": [
|
|
"php artisan config:clear",
|
|
"vendor/bin/phpunit -c phpunit-mysql.xml",
|
|
"php artisan config:clear"
|
|
],
|
|
"test-coverage-html": [
|
|
"@putenv XDEBUG_MODE=coverage",
|
|
"php artisan config:clear",
|
|
"vendor/bin/phpunit --coverage-html tests/Coverage/",
|
|
"php artisan config:clear"
|
|
],
|
|
"ide-helper": [
|
|
"php artisan config:clear",
|
|
"php artisan clear-compiled",
|
|
"php artisan ide-helper:generate",
|
|
"php artisan ide-helper:models"
|
|
]
|
|
}
|
|
}
|