Skip to content

Commit

Permalink
Set phoenix and ecto as optional deps
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultzer committed Jan 18, 2020
1 parent 7dcf0d0 commit 9567251
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ defmodule Pow.MixProject do

defp deps do
[
{:ecto, "~> 2.2 or ~> 3.0"},
{:phoenix, "~> 1.3.0 or ~> 1.4.0"},
{:phoenix_html, ">= 2.0.0 and <= 3.0.0"},
{:ecto, "~> 2.2 or ~> 3.0", optional: true},
{:phoenix, "~> 1.3.0 or ~> 1.4.0", optional: true},
{:phoenix_html, ">= 2.0.0 and <= 3.0.0", optional: true},
{:plug, ">= 1.5.0 and < 2.0.0", optional: true},

{:phoenix_ecto, "~> 4.0.0", only: [:dev, :test]},
Expand Down

0 comments on commit 9567251

Please sign in to comment.