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": {
|
2023-03-25 00:20:39 +01:00
|
|
|
"php": "^8.1",
|
2022-04-14 15:37:04 +02:00
|
|
|
"ext-bcmath": "*",
|
|
|
|
"ext-ctype": "*",
|
|
|
|
"ext-dom": "*",
|
|
|
|
"ext-fileinfo": "*",
|
|
|
|
"ext-gd": "*",
|
|
|
|
"ext-json": "*",
|
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-openssl": "*",
|
|
|
|
"ext-session": "*",
|
|
|
|
"ext-tokenizer": "*",
|
|
|
|
"ext-xml": "*",
|
2022-03-15 14:47:07 +01:00
|
|
|
"chillerlan/php-qrcode": "^4.3",
|
2022-07-05 10:10:24 +02:00
|
|
|
"doctormckay/steam-totp": "^1.0",
|
2022-11-14 17:10:47 +01:00
|
|
|
"doctrine/dbal": "^3.4",
|
2022-06-20 21:58:59 +02:00
|
|
|
"google/protobuf": "^3.21",
|
2022-11-14 17:10:47 +01:00
|
|
|
"guzzlehttp/guzzle": "^7.2",
|
2023-04-18 08:43:36 +02:00
|
|
|
"jackiedo/dotenv-editor": "^2.1",
|
2023-03-25 00:20:39 +01:00
|
|
|
"khanamiryan/qrcode-detector-decoder": "^2.0.2",
|
2024-03-29 09:21:00 +01:00
|
|
|
"laragear/webauthn": "^2.0",
|
2023-08-01 11:26:58 +02:00
|
|
|
"laravel/framework": "^10.10",
|
2022-11-14 17:10:47 +01:00
|
|
|
"laravel/passport": "^11.2",
|
2023-11-20 23:25:36 +01:00
|
|
|
"laravel/socialite": "^5.10",
|
2023-08-01 11:26:58 +02:00
|
|
|
"laravel/tinker": "^2.8",
|
|
|
|
"laravel/ui": "^4.2",
|
2022-07-22 16:28:11 +02:00
|
|
|
"paragonie/constant_time_encoding": "^2.6",
|
2023-11-20 23:25:36 +01:00
|
|
|
"socialiteproviders/manager": "^4.4",
|
2022-07-22 16:28:11 +02:00
|
|
|
"spatie/eloquent-sortable": "^4.0.1",
|
2023-03-25 00:20:39 +01:00
|
|
|
"spomky-labs/otphp": "^11.0"
|
2019-05-20 07:37:41 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-03-25 00:20:39 +01:00
|
|
|
"barryvdh/laravel-ide-helper": "^2.13",
|
2024-03-29 09:57:46 +01:00
|
|
|
"brianium/paratest": "^7.3",
|
2023-03-25 00:20:39 +01:00
|
|
|
"fakerphp/faker": "^1.21",
|
2023-12-22 10:28:05 +01:00
|
|
|
"larastan/larastan": "^2.0",
|
2023-03-25 00:20:39 +01:00
|
|
|
"laravel/pint": "^1.6",
|
2022-07-22 16:28:11 +02:00
|
|
|
"mockery/mockery": "^1.5",
|
2023-08-01 11:26:58 +02:00
|
|
|
"nunomaduro/collision": "^7.0",
|
2023-03-25 00:20:39 +01:00
|
|
|
"phpstan/phpstan": "^1.10",
|
2023-08-01 11:26:58 +02:00
|
|
|
"phpunit/phpunit": "^10.1",
|
|
|
|
"spatie/laravel-ignition": "^2.0"
|
2022-09-02 13:54:29 +02:00
|
|
|
},
|
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": {
|
2021-12-02 13:15:53 +01:00
|
|
|
"App\\": "app/",
|
|
|
|
"Database\\Factories\\": "database/factories/",
|
|
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
|
|
}
|
2019-05-20 07:37:41 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2023-08-01 11:26:58 +02:00
|
|
|
"minimum-stability": "stable",
|
2019-05-20 07:37:41 +02:00
|
|
|
"prefer-stable": true,
|
|
|
|
"scripts": {
|
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover --ansi"
|
|
|
|
],
|
2023-08-01 11:26:58 +02:00
|
|
|
"post-update-cmd": [
|
|
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
|
|
],
|
2022-03-31 12:40:14 +02:00
|
|
|
"post-root-package-install": [
|
|
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
2019-05-20 07:37:41 +02:00
|
|
|
],
|
2022-03-31 12:40:14 +02:00
|
|
|
"post-create-project-cmd": [
|
|
|
|
"@php artisan key:generate --ansi"
|
2019-05-25 23:51:20 +02:00
|
|
|
],
|
2023-03-25 00:20:39 +01:00
|
|
|
"test": [
|
2022-04-01 13:35:59 +02:00
|
|
|
"php artisan config:clear",
|
2024-03-29 09:57:46 +01:00
|
|
|
"php artisan test --parallel"
|
2021-11-22 01:09:54 +01:00
|
|
|
],
|
2023-03-25 00:20:39 +01:00
|
|
|
"test-mysql": [
|
2022-04-01 13:35:59 +02:00
|
|
|
"php artisan config:clear",
|
|
|
|
"vendor/bin/phpunit -c phpunit-mysql.xml"
|
|
|
|
],
|
2023-03-25 00:20:39 +01:00
|
|
|
"test-coverage-html": [
|
2021-11-22 01:09:54 +01:00
|
|
|
"@putenv XDEBUG_MODE=coverage",
|
|
|
|
"vendor/bin/phpunit --coverage-html tests/Coverage/"
|
2019-05-20 07:37:41 +02:00
|
|
|
]
|
|
|
|
}
|
2024-03-29 09:57:46 +01:00
|
|
|
}
|