-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
73 lines (73 loc) · 2.09 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "asbiin/laravel-webauthn-example",
"type": "project",
"description": "Example application for asbiin/laravel-webauthn",
"keywords": ["laravel", "webauthn"],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-fileinfo": "*",
"ext-gmp": "*",
"ext-intl": "*",
"asbiin/laravel-sentry-tunnel": "^2.2",
"asbiin/laravel-webauthn": "^4.4",
"doctrine/dbal": "^4.0",
"inertiajs/inertia-laravel": "^1.0",
"laravel/framework": "^11.0",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"monicahq/laravel-cloudflare": "^3.7",
"php-http/discovery": "^1.14",
"pirsch-analytics/laravel-pirsch": "^0",
"psr/log": "^3.0",
"sentry/sentry-laravel": "^4.2",
"tightenco/ziggy": "2.0.4"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"fakerphp/faker": "^1.9",
"laravel/dusk": "^8.0",
"laravel/sail": "^1.0",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^2.4"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}