Skip to content

Commit 0b654c1

Browse files
update
1 parent 9f1d49e commit 0b654c1

File tree

4 files changed

+34
-13
lines changed

4 files changed

+34
-13
lines changed

.styleci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
preset: laravel
2+
3+
enabled:
4+
- align_double_arrow
5+
6+
disabled:
7+
- unused_use
8+
9+
finder:
10+
not-name:
11+
- index.php
12+
- server.php

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Fazle Rabbi
3+
Copyright (c) 2025 Jeremy Kenedy
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ LaravelSpa
239239
│   │   │   │   ├── ForgotPasswordController.php
240240
│   │   │   │   ├── ImpersonateController.php
241241
│   │   │   │   ├── LoginController.php
242+
│   │   │   │   ├── PasswordController.php
242243
│   │   │   │   ├── RegisterController.php
243244
│   │   │   │   ├── ResetPasswordController.php
244245
│   │   │   │   ├── SocialiteController.php
@@ -521,9 +522,6 @@ LaravelSpa
521522
│   │   ├── app.js
522523
│   │   ├── bootstrap.js
523524
│   │   ├── components
524-
│   │   │   ├── DualListBox.vue
525-
│   │   │   ├── ExampleComponent.vue
526-
│   │   │   ├── Footer.vue
527525
│   │   │   ├── LocaleSwitcher.vue
528526
│   │   │   ├── ToggleDarkMode.vue
529527
│   │   │   ├── account
@@ -557,9 +555,11 @@ LaravelSpa
557555
│   │   │   │   ├── TinyMCEditor.vue
558556
│   │   │   │   └── UmoEditor.vue
559557
│   │   │   ├── form
558+
│   │   │   │   ├── AppPasswordInput.vue
560559
│   │   │   │   ├── AppSettingTextInput.vue
561560
│   │   │   │   ├── AppSettingTextarea.vue
562-
│   │   │   │   └── AppSettingToggle.vue
561+
│   │   │   │   ├── AppSettingToggle.vue
562+
│   │   │   │   └── AppTextInput.vue
563563
│   │   │   ├── includes
564564
│   │   │   │   ├── AdminBreadcrumb.vue
565565
│   │   │   │   ├── AdminBreadcrumbContainer.vue
@@ -586,7 +586,6 @@ LaravelSpa
586586
│   │   │   │   ├── RoleFormModal.vue
587587
│   │   │   │   └── RolesBadges.vue
588588
│   │   │   └── users
589-
│   │   │   ├── UserDownloadData.vue
590589
│   │   │   ├── UserForm.vue
591590
│   │   │   └── UserFormModal.vue
592591
│   │   ├── composables
@@ -634,7 +633,6 @@ LaravelSpa
634633
│   │   ├── validation
635634
│   │   │   └── rules.js
636635
│   │   └── views
637-
│   │   ├── Blank.vue
638636
│   │   ├── admin
639637
│   │   │   ├── ActivityLog.vue
640638
│   │   │   ├── Admin.vue
@@ -676,16 +674,22 @@ LaravelSpa
676674
│   │   ├── pages
677675
│   │   │   └── user-settings
678676
│   │   │   ├── Account.vue
677+
│   │   │   ├── AccountAuthentication.vue
678+
│   │   │   ├── AccountData.vue
679679
│   │   │   ├── Password.vue
680680
│   │   │   ├── Profile.vue
681681
│   │   │   ├── Settings.vue
682682
│   │   │   ├── SettingsNav.vue
683-
│   │   │   └── SettingsNavLink.vue
683+
│   │   │   ├── SettingsNavLink.vue
684+
│   │   │   └── UserDownloadData.vue
684685
│   │   ├── posts
685686
│   │   │   ├── details.vue
686687
│   │   │   └── index.vue
687-
│   │   └── register
688-
│   │   └── index.vue
688+
│   │   ├── register
689+
│   │   │   └── index.vue
690+
│   │   └── templates
691+
│   │   ├── Bare.vue
692+
│   │   └── Blank.vue
689693
│   ├── pwa
690694
│   │   ├── serviceworker.js
691695
│   │   └── sw.js
@@ -716,6 +720,8 @@ LaravelSpa
716720
├── vite.config.js
717721
└── vue.config.js
718722
723+
104 directories, 422 files
724+
719725
103 directories, 419 files
720726
721727
```

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"$schema": "https://getcomposer.org/schema.json",
3-
"name": "jeremykenedy/budgetmaster",
3+
"name": "jeremykenedy/laravel-spa",
44
"type": "project",
5-
"description": "A Laravel Auto SPA Vue starter project",
5+
"description": "The Laravel Framework as and API and Vue SSO SPA.",
66
"keywords": [
77
"spa",
88
"laravel",
99
"auth",
1010
"SSO",
11-
"vue"
11+
"vite",
12+
"vue",
13+
"vue3",
14+
"tailwindcss"
1215
],
1316
"license": "MIT",
1417
"authors": [

0 commit comments

Comments
 (0)