2019-05-20 07:37:41 +02:00
|
|
|
{
|
2020-10-11 20:40:28 +02:00
|
|
|
"name": "bubka/2fauth",
|
2019-05-20 07:37:41 +02:00
|
|
|
"type": "project",
|
2020-10-11 20:40:28 +02:00
|
|
|
"description": "Two-Factor authentication generator",
|
2019-05-20 07:37:41 +02:00
|
|
|
"keywords": [
|
2020-10-11 20:40:28 +02:00
|
|
|
"2fauth",
|
|
|
|
"two-actor authentication"
|
2019-05-20 07:37:41 +02:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"require": {
|
2020-10-12 18:50:39 +02:00
|
|
|
"php": "^7.3",
|
2020-10-12 08:05:33 +02:00
|
|
|
"appstract/laravel-options": "^4.1.1",
|
2020-11-02 13:39:43 +01:00
|
|
|
"chillerlan/php-qrcode": "3.3",
|
2020-10-11 20:40:28 +02:00
|
|
|
"doctrine/dbal": "^2.10",
|
2021-05-29 10:54:32 +02:00
|
|
|
"fideloper/proxy": "^4.4.1",
|
|
|
|
"khanamiryan/qrcode-detector-decoder": "^1.0.4",
|
2020-10-12 08:05:33 +02:00
|
|
|
"laravel/framework": "^7.0",
|
|
|
|
"laravel/passport": "^9.3.2",
|
|
|
|
"laravel/tinker": "^2.0",
|
|
|
|
"laravel/ui": "^2.0",
|
2021-05-29 10:54:32 +02:00
|
|
|
"paragonie/constant_time_encoding": "^2.4",
|
|
|
|
"spatie/eloquent-sortable": "^3.11",
|
2020-10-12 08:05:33 +02:00
|
|
|
"spomky-labs/otphp": "^10.0"
|
2019-05-20 07:37:41 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-10-12 08:05:33 +02:00
|
|
|
"facade/ignition": "^2.3",
|
2020-10-11 20:40:28 +02:00
|
|
|
"fzaninotto/faker": "^1.9",
|
2020-10-12 08:05:33 +02:00
|
|
|
"mockery/mockery": "^1.3",
|
|
|
|
"nunomaduro/collision": "^4.1",
|
2020-10-11 20:40:28 +02:00
|
|
|
"phpunit/phpunit": "^9.3"
|
2019-05-20 07:37:41 +02:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"optimize-autoloader": true,
|
|
|
|
"preferred-install": "dist",
|
|
|
|
"sort-packages": true
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"laravel": {
|
|
|
|
"dont-discover": []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"App\\": "app/"
|
|
|
|
},
|
|
|
|
"classmap": [
|
|
|
|
"database/seeds",
|
|
|
|
"database/factories"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"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"
|
2019-05-25 23:51:20 +02:00
|
|
|
],
|
|
|
|
"test" : [
|
|
|
|
"vendor/bin/phpunit"
|
2019-05-20 07:37:41 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|