From db26414a96d8f67c4229824ef763aab37251ebe1 Mon Sep 17 00:00:00 2001
From: Thiago Santos <thia.mdossantos@gmail.com>
Date: Fri, 6 Oct 2023 16:40:52 -0300
Subject: [PATCH] Make deps available in all environments

---
 mix.exs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mix.exs b/mix.exs
index 8206100..8533796 100644
--- a/mix.exs
+++ b/mix.exs
@@ -43,10 +43,10 @@ defmodule TypeID.MixProject do
 
   defp deps do
     [
-      {:ecto, "~> 3.10", only: [:dev, :test], optional: true},
-      {:phoenix_html, "~> 3.3", only: [:dev, :test], optional: true},
-      {:phoenix, "~> 1.7", only: [:dev, :test], optional: true},
-      {:jason, "~> 1.4", only: [:dev, :test], optional: true},
+      {:ecto, "~> 3.10", optional: true},
+      {:phoenix_html, "~> 3.3", optional: true},
+      {:phoenix, "~> 1.7", optional: true},
+      {:jason, "~> 1.4", optional: true},
       {:ex_doc, "~> 0.27", only: :dev, runtime: false},
       {:yaml_elixir, "~> 2.9", only: [:dev, :test], runtime: false}
     ]