diff --git a/README.md b/README.md index 11e4c91..97a0926 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ _Note_: Sessions are required for this strategy. end ``` -1. You controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses. +1. Your controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses. For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application. diff --git a/mix.exs b/mix.exs index 8329ba2..0dda32e 100644 --- a/mix.exs +++ b/mix.exs @@ -25,15 +25,15 @@ defmodule UeberauthTwitter.Mixfile do defp deps do [ - {:httpoison, "~> 0.7"}, + {:httpoison, "~> 0.13"}, {:oauther, "~> 1.1"}, - {:poison, "~> 1.3 or ~> 2.0"}, - {:ueberauth, "~> 0.2"}, + {:poison, "~> 3.0"}, + {:ueberauth, "~> 0.4"}, # dev/test dependencies {:earmark, ">= 0.0.0", only: :dev}, - {:ex_doc, "~> 0.1", only: :dev}, - {:credo, "~> 0.5", only: [:dev, :test]} + {:ex_doc, "~> 0.18", only: :dev}, + {:credo, "~> 0.8", only: [:dev, :test]} ] end