File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ You can read about Stimulus version on its [release announcement](https://world.
77
88The most important change needed is to:
99
10- * Remove ` stimulus ` from your ` package.json ` file, replace it with ` "@hotwired/stimulus": "^3.0" `
11- and run ` yarn install ` . Also upgrade ` @symfony/webpack-encore ` to 1.7.0 or later.
10+ * Remove ` stimulus ` from your ` package.json ` file and replace it with ` "@hotwired/stimulus": "^3.0" ` .
11+ Also change your ` @symfony/webpack-encore ` version to ` ^1.7 ` and ` @symfony/stimulus-bridge ` to ` ^3.0 ` .
12+ After making these changes, run ` yarn install ` .
1213
1314* Update all of your controllers to replace any imports for ` stimulus ` with
1415 imports from ` @hotwired/stimulus ` :
@@ -18,8 +19,8 @@ The most important change needed is to:
1819+ import { Controller } from '@hotwired/stimulus';
1920```
2021
21- * Upgrade any ` symfony/ux-* ` PHP packages that you have installed to version 2 or later. Then
22- run ` yarn install --force ` .
22+ * In ` composer.json ` , update any ` symfony/ux-* ` packages that you have installed to version ` ^2.0 ` .
23+ Run ` composer up "symfony/ux-*" ` . Once that finishes, run ` yarn install --force ` .
2324
2425## 2.0.0
2526
You can’t perform that action at this time.
0 commit comments