You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Can I get Backpack PRO for free to use in a non-commercial project?
41
41
42
-
No - we're no longer giving away free licenses. But we _have_ released Backpack CRUD v5 and v6 under the MIT License, which means it's free and open-source. It has fewer features, but you can do absolutely anything you want with it.
42
+
No - we're no longer giving away free licenses. But we _have_ released Backpack CRUD v5 and v6 under the MIT License, which means it's free and open-source. It has fewer features, but you can do absolutely do anything you want with it.
43
43
44
44
<aname="Installation"></a>
45
45
## Installation
@@ -48,17 +48,11 @@ No - we're no longer giving away free licenses. But we _have_ released Backpack
48
48
<aname="how-do-i-update-backpack"></a>
49
49
### How do I update Backpack to the latest non-breaking version?
50
50
51
-
First of all, **run `composer update` on your project**. That will pull in the latest supported version of all your Backpack packages.
51
+
Run **`composer update`** on your project to update the dependencies given your version constrains in `composer.json`. If you want to update a specific package, you can run **`composer update backpack/crud`** for example to only update `backpack/crud` and it's dependencies.
52
52
53
-
Then you should **re-publish the JS and CSS assets**. There are two ways to do that:
54
-
55
-
(A) Run `php artisan vendor:publish --provider="Backpack\CRUD\BackpackServiceProvider" --tag=public --force`. Please note this will overwrite anything that's already there. This B solution has a downside: _unused files are not removed_. A few files Backpack no longer uses will still be in your public/packages folder, even though they're no longer used.
56
-
57
-
(B) If you have NOT touched you `public/packages` folder, or placed anything custom inside it:
58
-
- delete the public/packages directory and all its contents;
59
-
- run `php artisan vendor:publish --provider="Backpack\CRUD\BackpackServiceProvider" --tag=public`
60
-
- if you use elFinder, also delete `resources/views/vendor/elfinder` and run `php artisan backpack:filemanager:install`
53
+
If you have your assets cached you can run `php artisan basset:clear` to clear the cache too. You can manually rebuild the asset cache if necessary with `php artisan basset:cache`. We do recommend you keep basset disabled on localhost while developing.
61
54
55
+
Some packages may require you to run additional commands to update the database schema or publish new assets. Please refer to the package documentation or upgrade guide for more information.
62
56
63
57
<aname="how-do-i-uninstall-backpack"></a>
64
58
### How do I uninstall Backpack from my project?
@@ -70,8 +64,6 @@ You can remove Backpack from your project pretty easily, if you decide to stop u
0 commit comments