-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Let me just merge this for now 😅 * feat-base: (41 commits) feat(dev): enable debug config fix(tests): fix end-to-end test on browserstack feat(ui): improve accessibility on auth forms chore(deploy): update deployment config chore(dev): add `xdebug.php-debug` as extension recommendation chore(ui): define additional page component options chore(ci): update action workflow configs chore: rearrange utils based on context chore: update route param definition chore: add a bit flexibility to build the assets chore: improve accessibility on login form chore(dev): force dev host to IPv4 refactor: decouple page section into dedicated components chore: clean up `shim.d.ts` and add page component name refactor: move `app-wrapper.vue` to `app/wrapper.vue` chore: set `fallbackLocale` to `en` chore: add type definition for component option 1092c6e feat: make use of `defineOptions()` to assign page title chore: update ziggy route function override chore: patch 6890392 mark naive-ui discrete api as readonly? ...
- Loading branch information
Showing
74 changed files
with
1,321 additions
and
1,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Listen for Xdebug", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9003 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Inertia\Inertia; | ||
|
||
class TestController extends Controller | ||
{ | ||
/** | ||
* @return \Inertia\Response | ||
*/ | ||
public function __invoke() | ||
{ | ||
return Inertia::render('test'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,16 @@ | |
"support": { | ||
"source": "https://github.com/creasico/laravel-project" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:creasico/laravel-base.git" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.1", | ||
"creasi/laravel-nusa": "^0.0.5", | ||
"creasi/laravel-base": "dev-main", | ||
"creasi/laravel-nusa": "^0.1.2", | ||
"fakerphp/faker": "^1.9.1", | ||
"guzzlehttp/guzzle": "^7.2", | ||
"inertiajs/inertia-laravel": "^0.6.9", | ||
|
@@ -52,8 +59,7 @@ | |
"scripts": { | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover --ansi", | ||
"@php artisan vendor:publish --tag creasi-config --ansi" | ||
"@php artisan package:discover --ansi" | ||
], | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
|
@@ -62,7 +68,7 @@ | |
"@php artisan key:generate --ansi" | ||
], | ||
"dep": [ | ||
"vendor/bin/dep -f scripts/deploy.php" | ||
"vendor/bin/dep --ansi -f scripts/deploy.php" | ||
], | ||
"fix": [ | ||
"pint --preset laravel --ansi" | ||
|
Oops, something went wrong.