Commit 3dbb571e6ca2284b66812dfcf4ed38ebb2617831

Michael Crumm 2021-07-29T13:23:48

Update Phoenix instructions with version requirements

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/README.md b/README.md
index 4f2d39a..e427f3c 100644
--- a/README.md
+++ b/README.md
@@ -80,12 +80,15 @@ to the ones configured above.
 ## Adding to Phoenix
 
 To add `dart_sass` to an application using Phoenix, you need only four steps.
+Note that installation also requires that Phoenix watchers can accept `MFArgs`
+tuples– so you must have Phoenix > v1.5.9.
 
 First add it as a dependency in your `mix.exs`:
 
 ```elixir
 def deps do
   [
+    {:phoenix, github: "phoenixframework/phoenix", branch: "v1.5", override: true},
     {:dart_sass, "~> 0.1", runtime: Mix.env() == :dev}
   ]
 end