About commerce billing

Hi, my name is Yendris and i develop a commerce app for my self, i need a library that support payment form and i saw commerce billing., the problem is that i use phoenix 1.3 , and raise a conflict because poison is diferent 1.5 and 3, is there any solution to that or exist any alternative , thanks

Have you tried {:poison, "~> 3.0", override: true}?

No , i use this

defp deps do
[
{:phoenix, “~> 1.3.0”},
{:phoenix_pubsub, “~> 1.0”},
{:phoenix_ecto, “~> 3.2”},
{:postgrex, “>= 0.0.0”},
{:phoenix_html, “~> 2.10”},
{:phoenix_live_reload, “~> 1.0”, only: :dev},
{:gettext, “~> 0.11”},
{:phauxth, “~> 1.2”},
{:bcrypt_elixir, “~> 1.0”},
{:cowboy, “~> 1.0”},
{:commerce_billing, github: “nimish-mehta/commerce_billing”, override: true},
{:guardian, “~> 1.0”},
{:yamerl, github: “yakaz/yamerl”}
]
end

ok, CB need poison 1.5 and phoenix the version 3, in this deps where i put {:poison, “~> 3.0”, override: true}?

Solved, Thanks