mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-07 17:04:34 +01:00
82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"name": "bubka/2fauth",
|
|
"type": "project",
|
|
"description": "Two-Factor authentication generator",
|
|
"keywords": [
|
|
"2fauth",
|
|
"two-actor authentication"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^7.4|^8.0",
|
|
"chillerlan/php-qrcode": "^4.3",
|
|
"darkghosthunter/larapass": "^3.0.2",
|
|
"doctrine/dbal": "^3.2",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"khanamiryan/qrcode-detector-decoder": "^1.0.5",
|
|
"laravel/framework": "^8.0",
|
|
"laravel/passport": "^10.0",
|
|
"laravel/tinker": "^2.5",
|
|
"laravel/ui": "^3.0",
|
|
"paragonie/constant_time_encoding": "^2.4",
|
|
"spatie/eloquent-sortable": "^3.11",
|
|
"spomky-labs/otphp": "^10.0"
|
|
},
|
|
"require-dev": {
|
|
"facade/ignition": "^2.3.6",
|
|
"fakerphp/faker": "^1.16",
|
|
"mockery/mockery": "^1.3",
|
|
"nunomaduro/collision": "^5.0",
|
|
"phpunit/phpunit": "^9.5"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": 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": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"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"
|
|
],
|
|
"test-mysql" : [
|
|
"php artisan config:clear",
|
|
"vendor/bin/phpunit -c phpunit-mysql.xml"
|
|
],
|
|
"test-coverage-html" : [
|
|
"@putenv XDEBUG_MODE=coverage",
|
|
"vendor/bin/phpunit --coverage-html tests/Coverage/"
|
|
]
|
|
}
|
|
}
|