Packages
Simple ReCaptcha display/verify code for Elixir applications. Designed to be used with a CMS such as Phoenix.
Current section
Files
Jump to
Current section
Files
exrecaptcha
mix.exs
mix.exs
defmodule Exrecaptcha.Mixfile do
use Mix.Project
def project do
[app: :exrecaptcha,
version: "0.0.3",
elixir: "~> 1.0.0",
description: description,
deps: deps,
package: package]
end
def application do
[applications: [:logger, :httpotion]]
end
defp description do
"""
Simple ReCaptcha display/verify code for Elixir applications.
Designed to be used with a CMS such as Phoenix.
"""
end
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
{:httpotion, "~> 1.0.0"}
]
end
defp package do
[files: ["lib", "mix.exs", "README.md", "COPYING"],
contributors: ["Adrien Anselme"],
licenses: ["Do What the Fuck You Want to Public License, Version 2"],
links: %{ "GitHub" => "https://github.com/adanselm/exrecaptcha" }]
end
end