Skip to content

Commit 600753e

Browse files
committed
deps: support laravel/nova 5.0.5
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 0636d91 commit 600753e

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"spatie/laravel-ray": "^1.37"
2222
},
2323
"conflict": {
24-
"laravel/nova": "<5.0.3 || >=6.0.0"
24+
"laravel/nova": "<5.0.5 || >=6.0.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

dist/nova.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ export default class Nova {
6363
booting(callback: BootingCallback): void;
6464
/**
6565
* Execute all of the booting callbacks.
66+
*
67+
* @ignore
6668
*/
6769
boot(): void;
6870
/** @type {VueStore} */
@@ -86,6 +88,9 @@ export default class Nova {
8688
liftOff(): void;
8789
/** @private */
8890
private notificationPollingInterval;
91+
/**
92+
* @ignore
93+
*/
8994
deploy(): void;
9095
/**
9196
* Return configuration value from a key.

stubs/NovaServiceProvider.stub

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
4141
Nova::routes()
4242
->withAuthenticationRoutes(default: true)
4343
->withPasswordResetRoutes()
44+
->withEmailVerificationRoutes()
4445
->register();
4546
}
4647

0 commit comments

Comments
 (0)