├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── README.md ├── eslint.config.mjs ├── package.json ├── playground ├── app.vue ├── composables │ └── useApiFetch.ts ├── layouts │ └── default.vue ├── nuxt.config.ts ├── package.json ├── pages │ ├── auth │ │ ├── login.vue │ │ └── register.vue │ ├── dashboard.vue │ ├── index.vue │ └── profile.vue ├── server │ └── tsconfig.json └── tsconfig.json ├── prettier.config.mjs ├── src ├── module.ts └── runtime │ ├── composables │ ├── useCurrentUser.ts │ ├── useSanctum.ts │ ├── useSanctumFetch.ts │ ├── useSanctumForm.ts │ ├── useSanctumOptions.ts │ └── useTokenStorage.ts │ ├── helpers │ ├── createLogger.ts │ ├── get-auth-user.ts │ ├── has-file.ts │ ├── module-info.ts │ ├── object-to-formdata.js │ └── utilities.ts │ ├── middleware │ ├── auth.ts │ └── guest.ts │ ├── plugin.ts │ ├── server │ └── tsconfig.json │ ├── services │ └── createFetchService.ts │ └── types │ ├── ModuleOptions.ts │ ├── SanctumForm.ts │ └── index.ts ├── test ├── basic.test.ts └── fixtures │ ├── basic │ ├── app.vue │ ├── nuxt.config.ts │ └── package.json │ └── laravel-api │ ├── .editorconfig │ ├── .env.example │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── app │ ├── Actions │ │ └── Fortify │ │ │ ├── CreateNewUser.php │ │ │ ├── PasswordValidationRules.php │ │ │ ├── ResetUserPassword.php │ │ │ ├── UpdateUserPassword.php │ │ │ └── UpdateUserProfileInformation.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ └── TokenAuthenticationController.php │ │ └── Resources │ │ │ └── UserResource.php │ ├── Models │ │ └── User.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ └── FortifyServiceProvider.php │ ├── artisan │ ├── bootstrap │ ├── app.php │ ├── cache │ │ └── .gitignore │ └── providers.php │ ├── composer.json │ ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── fortify.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ └── session.php │ ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 0001_01_01_000000_create_users_table.php │ │ ├── 0001_01_01_000001_create_cache_table.php │ │ ├── 0001_01_01_000002_create_jobs_table.php │ │ ├── 2024_08_17_180509_create_personal_access_tokens_table.php │ │ └── 2024_08_17_211552_add_two_factor_columns_to_users_table.php │ └── seeders │ │ └── DatabaseSeeder.php │ ├── package.json │ ├── phpunit.xml │ ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt │ ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ └── welcome.blade.php │ ├── routes │ ├── api.php │ ├── console.php │ └── web.php │ ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore │ ├── tests │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php │ └── vite.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/qirolab -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/package.json -------------------------------------------------------------------------------- /playground/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/app.vue -------------------------------------------------------------------------------- /playground/composables/useApiFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/composables/useApiFetch.ts -------------------------------------------------------------------------------- /playground/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/layouts/default.vue -------------------------------------------------------------------------------- /playground/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/nuxt.config.ts -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/pages/auth/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/pages/auth/login.vue -------------------------------------------------------------------------------- /playground/pages/auth/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/pages/auth/register.vue -------------------------------------------------------------------------------- /playground/pages/dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/pages/dashboard.vue -------------------------------------------------------------------------------- /playground/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/pages/index.vue -------------------------------------------------------------------------------- /playground/pages/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/playground/pages/profile.vue -------------------------------------------------------------------------------- /playground/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.nuxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/runtime/composables/useCurrentUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useCurrentUser.ts -------------------------------------------------------------------------------- /src/runtime/composables/useSanctum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useSanctum.ts -------------------------------------------------------------------------------- /src/runtime/composables/useSanctumFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useSanctumFetch.ts -------------------------------------------------------------------------------- /src/runtime/composables/useSanctumForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useSanctumForm.ts -------------------------------------------------------------------------------- /src/runtime/composables/useSanctumOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useSanctumOptions.ts -------------------------------------------------------------------------------- /src/runtime/composables/useTokenStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/composables/useTokenStorage.ts -------------------------------------------------------------------------------- /src/runtime/helpers/createLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/createLogger.ts -------------------------------------------------------------------------------- /src/runtime/helpers/get-auth-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/get-auth-user.ts -------------------------------------------------------------------------------- /src/runtime/helpers/has-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/has-file.ts -------------------------------------------------------------------------------- /src/runtime/helpers/module-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/module-info.ts -------------------------------------------------------------------------------- /src/runtime/helpers/object-to-formdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/object-to-formdata.js -------------------------------------------------------------------------------- /src/runtime/helpers/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/helpers/utilities.ts -------------------------------------------------------------------------------- /src/runtime/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/middleware/auth.ts -------------------------------------------------------------------------------- /src/runtime/middleware/guest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/middleware/guest.ts -------------------------------------------------------------------------------- /src/runtime/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/plugin.ts -------------------------------------------------------------------------------- /src/runtime/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/server/tsconfig.json -------------------------------------------------------------------------------- /src/runtime/services/createFetchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/services/createFetchService.ts -------------------------------------------------------------------------------- /src/runtime/types/ModuleOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/types/ModuleOptions.ts -------------------------------------------------------------------------------- /src/runtime/types/SanctumForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/types/SanctumForm.ts -------------------------------------------------------------------------------- /src/runtime/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/src/runtime/types/index.ts -------------------------------------------------------------------------------- /test/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/basic.test.ts -------------------------------------------------------------------------------- /test/fixtures/basic/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/basic/app.vue -------------------------------------------------------------------------------- /test/fixtures/basic/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/basic/nuxt.config.ts -------------------------------------------------------------------------------- /test/fixtures/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/basic/package.json -------------------------------------------------------------------------------- /test/fixtures/laravel-api/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/.editorconfig -------------------------------------------------------------------------------- /test/fixtures/laravel-api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/.env.example -------------------------------------------------------------------------------- /test/fixtures/laravel-api/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/.gitattributes -------------------------------------------------------------------------------- /test/fixtures/laravel-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/.gitignore -------------------------------------------------------------------------------- /test/fixtures/laravel-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/README.md -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Http/Controllers/TokenAuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Http/Controllers/TokenAuthenticationController.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Models/User.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/artisan -------------------------------------------------------------------------------- /test/fixtures/laravel-api/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/bootstrap/app.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/bootstrap/providers.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/composer.json -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/app.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/auth.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/cache.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/cors.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/database.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/filesystems.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/fortify.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/logging.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/mail.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/queue.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/sanctum.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/services.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/config/session.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/factories/UserFactory.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/migrations/2024_08_17_180509_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/migrations/2024_08_17_180509_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/migrations/2024_08_17_211552_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/migrations/2024_08_17_211552_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/package.json -------------------------------------------------------------------------------- /test/fixtures/laravel-api/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/phpunit.xml -------------------------------------------------------------------------------- /test/fixtures/laravel-api/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/public/.htaccess -------------------------------------------------------------------------------- /test/fixtures/laravel-api/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/public/index.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/resources/js/bootstrap.js -------------------------------------------------------------------------------- /test/fixtures/laravel-api/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/routes/api.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/routes/console.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/routes/web.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/storage/framework/.gitignore -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/fixtures/laravel-api/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/tests/TestCase.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /test/fixtures/laravel-api/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/test/fixtures/laravel-api/vite.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qirolab/nuxt-sanctum-authentication/HEAD/tsconfig.json --------------------------------------------------------------------------------