create-v-kit-spa 0.10.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -9
- package/dist/messages.d.ts.map +1 -1
- package/dist/messages.js +3 -1
- package/dist/prompts.d.ts.map +1 -1
- package/dist/prompts.js +8 -4
- package/lib/159/.editorconfig +18 -0
- package/lib/159/.env.example +52 -0
- package/lib/159/.gitattributes +10 -0
- package/lib/159/.styleci.yml +14 -0
- package/lib/159/README.md +190 -0
- package/lib/159/RG-README.md +175 -0
- package/lib/159/app/Console/Kernel.php +32 -0
- package/lib/159/app/Exceptions/Handler.php +41 -0
- package/lib/159/app/Http/Controllers/Controller.php +13 -0
- package/lib/159/app/Http/Controllers/MainController.php +12 -0
- package/lib/159/app/Http/Kernel.php +67 -0
- package/lib/159/app/Http/Middleware/Authenticate.php +21 -0
- package/lib/159/app/Http/Middleware/EncryptCookies.php +17 -0
- package/lib/159/app/Http/Middleware/PreventRequestsDuringMaintenance.php +17 -0
- package/lib/159/app/Http/Middleware/RedirectIfAuthenticated.php +32 -0
- package/lib/159/app/Http/Middleware/TrimStrings.php +19 -0
- package/lib/159/app/Http/Middleware/TrustHosts.php +20 -0
- package/lib/159/app/Http/Middleware/TrustProxies.php +28 -0
- package/lib/159/app/Http/Middleware/VerifyCsrfToken.php +17 -0
- package/lib/159/app/Models/User.php +44 -0
- package/lib/159/app/Providers/AppServiceProvider.php +28 -0
- package/lib/159/app/Providers/AuthServiceProvider.php +30 -0
- package/lib/159/app/Providers/BroadcastServiceProvider.php +21 -0
- package/lib/159/app/Providers/EventServiceProvider.php +32 -0
- package/lib/159/app/Providers/RouteServiceProvider.php +63 -0
- package/lib/159/artisan +53 -0
- package/lib/159/bootstrap/app.php +55 -0
- package/lib/159/bootstrap/cache/.gitignore +2 -0
- package/lib/159/composer.json +62 -0
- package/lib/159/config/app.php +235 -0
- package/lib/159/config/auth.php +111 -0
- package/lib/159/config/broadcasting.php +64 -0
- package/lib/159/config/cache.php +110 -0
- package/lib/159/config/cors.php +34 -0
- package/lib/159/config/database.php +147 -0
- package/lib/159/config/filesystems.php +73 -0
- package/lib/159/config/hashing.php +52 -0
- package/lib/159/config/logging.php +118 -0
- package/lib/159/config/mail.php +118 -0
- package/lib/159/config/queue.php +93 -0
- package/lib/159/config/sanctum.php +65 -0
- package/lib/159/config/services.php +33 -0
- package/lib/159/config/session.php +201 -0
- package/lib/159/config/view.php +36 -0
- package/lib/159/database/factories/UserFactory.php +39 -0
- package/lib/159/database/migrations/2014_10_12_000000_create_users_table.php +36 -0
- package/lib/159/database/migrations/2014_10_12_100000_create_password_resets_table.php +32 -0
- package/lib/159/database/migrations/2019_08_19_000000_create_failed_jobs_table.php +36 -0
- package/lib/159/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php +36 -0
- package/lib/159/database/seeders/DatabaseSeeder.php +18 -0
- package/lib/159/package.json +28 -0
- package/lib/159/phpunit.xml +31 -0
- package/lib/159/public/.htaccess +21 -0
- package/lib/159/public/css/app.css +1 -0
- package/lib/159/public/fonts/vendor/@mdi/materialdesignicons-webfont.eot +0 -0
- package/lib/159/public/fonts/vendor/@mdi/materialdesignicons-webfont.ttf +0 -0
- package/lib/159/public/fonts/vendor/@mdi/materialdesignicons-webfont.woff +0 -0
- package/lib/159/public/fonts/vendor/@mdi/materialdesignicons-webfont.woff2 +0 -0
- package/lib/159/public/index.php +55 -0
- package/lib/159/public/js/app.js +81066 -0
- package/lib/159/public/js/resources_js_components_pages_About_vue.js +62 -0
- package/lib/159/public/js/resources_js_components_pages_Error_vue.js +62 -0
- package/lib/159/public/js/resources_js_components_pages_Home_vue.js +143 -0
- package/lib/159/public/mix-manifest.json +4 -0
- package/lib/159/public/robots.txt +2 -0
- package/lib/159/resources/css/app.css +0 -0
- package/lib/159/resources/js/app.js +37 -0
- package/lib/159/resources/js/bootstrap.js +28 -0
- package/lib/159/resources/js/components/pages/About.vue +5 -0
- package/lib/159/resources/js/components/pages/Error.vue +5 -0
- package/lib/159/resources/js/components/pages/Home.vue +21 -0
- package/lib/159/resources/js/components/templates/App.vue +86 -0
- package/lib/159/resources/js/mainStore.js +20 -0
- package/lib/159/resources/js/router.js +41 -0
- package/lib/159/resources/lang/en/auth.php +20 -0
- package/lib/159/resources/lang/en/pagination.php +19 -0
- package/lib/159/resources/lang/en/passwords.php +22 -0
- package/lib/159/resources/lang/en/validation.php +163 -0
- package/lib/159/resources/views/layouts/app.blade.php +14 -0
- package/lib/159/resources/views/welcome.blade.php +132 -0
- package/lib/159/routes/api.php +19 -0
- package/lib/159/routes/channels.php +18 -0
- package/lib/159/routes/console.php +19 -0
- package/lib/159/routes/web.php +20 -0
- package/lib/159/server.php +21 -0
- package/lib/159/storage/app/.gitignore +3 -0
- package/lib/159/storage/app/public/.gitignore +2 -0
- package/lib/159/storage/framework/cache/.gitignore +3 -0
- package/lib/159/storage/framework/cache/data/.gitignore +2 -0
- package/lib/159/storage/framework/sessions/.gitignore +2 -0
- package/lib/159/storage/framework/testing/.gitignore +2 -0
- package/lib/159/storage/framework/views/.gitignore +2 -0
- package/lib/159/storage/logs/.gitignore +2 -0
- package/lib/159/tests/CreatesApplication.php +22 -0
- package/lib/159/tests/Feature/ExampleTest.php +21 -0
- package/lib/159/tests/TestCase.php +10 -0
- package/lib/159/tests/Unit/ExampleTest.php +18 -0
- package/lib/159/webpack.mix.js +18 -0
- package/package.json +1 -1
- /package/lib/159/{Still Under Development Thank you.txt → public/favicon.ico} +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.