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 Sep 5, 2018
1 parent 359bc7d commit ed440f6
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.0"},
{:phoenix, "~> 1.3.0"},
{:phoenix_html, ">= 2.0.0 and <= 3.0.0"},
{:ecto, "~> 2.2.0", optional: true},
{:phoenix, "~> 1.3.0", optional: true},
{:phoenix_html, ">= 2.0.0 and <= 3.0.0", optional: true},
{:plug, ">= 1.5.0 and < 1.7.0", optional: true},

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

0 comments on commit ed440f6

Please sign in to comment.