How to customize/fork nova? #4152
-
|
I do not want to argue about the decision to close the private repository. But i would like to know if there is any process documented/planned on how to customize/fork Nova. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
"repositories": [
{
"type": "vcs",
"url": "git@github.com:your-own-organization/laravel-nova.git"
}
],
Done, now you are in control of the source code |
Beta Was this translation helpful? Give feedback.
Copy the repository to your own git repository (in nova 3 there was a download button here https://nova.laravel.com/releases but in nova 4 it redirects to the documentation (can we please bring back the download button?) so you will have to download it via composer first and copy the directory to your own repository.. repeat the process for every update)
Push it to a branch-like
v4Update your composer.json to depend on
"laravel/nova": "v4.x-dev"Add your own repository settings to your composer.json
Done, now you are in control of …