Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,20 @@
| [Laravel Fortify](https://github.com/laravel/fortify) | ^1.24 | Authentication back-end (login, register, password reset, 2FA) |
| [Laravel Passkeys](https://github.com/laravel/passkeys) | ^0.2.1 | WebAuthn / FIDO2 passkey authentication |
| [Livewire](https://livewire.laravel.com) | ^4.0 | Reactive UI components |
| [Wirekit](https://docs.wirekit.app) | ^2.11 | Livewire UI component kit |

## Features

- **Email + password authentication** via Fortify
- **TOTP two-factor authentication** (Google Authenticator, Authy, etc.) via Fortify
- **Passkey authentication** (Face ID, Touch ID, hardware security keys) via the official `laravel/passkeys` package
- **Livewire** reactive components for login, registration and 2FA challenge
- **Wirekit** component library for consistent Livewire UI primitives
- Password reset and email verification-ready

## Local Setup

### Requirements

- PHP 8.4+
- PHP 8.3+
- Composer 2.x
- Node 20+ and npm

Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.4",
"php": "^8.3",
"laravel/fortify": "^1.24",
"laravel/framework": "^13.8",
"laravel/passkeys": "^0.2.1",
"laravel/tinker": "^3.0",
"livewire/livewire": "^4.0",
"pushery/wirekit": "^2.11"
"livewire/livewire": "^4.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
Expand Down
83 changes: 2 additions & 81 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion resources/css/app.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
@import 'tailwindcss';
@import 'wirekit/blade';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
Expand Down
6 changes: 0 additions & 6 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@

<title>{{ config('app.name', 'Laravel') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />

<!-- Scripts -->
@wirekitStyles
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
Expand Down Expand Up @@ -55,7 +50,6 @@
</main>
</div>

@wirekitScripts
@livewireScripts
@stack('scripts')
</body>
Expand Down
6 changes: 0 additions & 6 deletions resources/views/layouts/guest.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@

<title>{{ config('app.name', 'Laravel') }}</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />

<!-- Scripts -->
@wirekitStyles
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
Expand All @@ -31,7 +26,6 @@
</div>
</div>

@wirekitScripts
@livewireScripts
@stack('scripts')
</body>
Expand Down
6 changes: 0 additions & 6 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import { bunny } from 'laravel-vite-plugin/fonts';
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
fonts: [
bunny('Instrument Sans', {
weights: [400, 500, 600],
}),
],
}),
tailwindcss(),
],
Expand Down