2FAuth/composer.json

100 lines
2.8 KiB
JSON
Raw Normal View History

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": {
2022-08-01 21:20:34 +02:00
"php": "^8.0",
"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",
"darkghosthunter/larapass": "^3.0.2",
"doctormckay/steam-totp": "^1.0",
"doctrine/dbal": "^3.3",
2021-11-03 23:09:20 +01:00
"fruitcake/laravel-cors": "^2.0",
2022-06-20 21:58:59 +02:00
"google/protobuf": "^3.21",
2021-12-02 13:15:53 +01:00
"guzzlehttp/guzzle": "^7.0.1",
2022-03-15 14:47:07 +01:00
"khanamiryan/qrcode-detector-decoder": "^1.0.5",
2021-12-02 13:15:53 +01:00
"laravel/framework": "^8.0",
"laravel/passport": "^10.0",
"laravel/tinker": "^2.5",
"laravel/ui": "^3.0",
"paragonie/constant_time_encoding": "^2.6",
"spatie/eloquent-sortable": "^4.0.1",
2020-10-12 08:05:33 +02:00
"spomky-labs/otphp": "^10.0"
2019-05-20 07:37:41 +02:00
},
"require-dev": {
2021-12-02 13:15:53 +01:00
"facade/ignition": "^2.3.6",
"fakerphp/faker": "^1.20",
"mockery/mockery": "^1.5",
2021-12-02 13:15:53 +01:00
"nunomaduro/collision": "^5.0",
2022-09-07 17:50:14 +02:00
"nunomaduro/larastan": "^1.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5"
2019-05-20 07:37:41 +02:00
},
"conflict": {
"khanamiryan/qrcode-detector-decoder": "~1.0.6"
},
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/"
}
},
"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');\""
2019-05-20 07:37:41 +02:00
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
2019-05-25 23:51:20 +02:00
],
"test" : [
2022-04-01 13:35:59 +02:00
"php artisan config:clear",
2019-05-25 23:51:20 +02:00
"vendor/bin/phpunit"
2021-11-22 01:09:54 +01:00
],
2022-04-01 13:35:59 +02:00
"test-mysql" : [
"php artisan config:clear",
"vendor/bin/phpunit -c phpunit-mysql.xml"
],
2021-11-22 01:09:54 +01:00
"test-coverage-html" : [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit --coverage-html tests/Coverage/"
2019-05-20 07:37:41 +02:00
]
}
}