Packages

The VerneMQ MQTT pubsub adapter for the Phoenix framework

Current section

Files

Jump to

mix.exs

defmodule PhoenixPubsubVernemq.Mixfile do
use Mix.Project
def project do
[app: :phoenix_pubsub_vernemq,
version: "0.0.2",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
package: package,
description: """
The VerneMQ MQTT pubsub adapter for the Phoenix framework
"""]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger]]
end
defp deps do
[{:phoenix, github: "phoenixframework/phoenix"},
{:vmq_commons, git: "https://github.com/erlio/vmq_commons.git",
ref: "144c894bbbf198c62846740b03cda3fd071f2d35"}]
end
defp package do
[contributors: ["Lars Hesel Christensen"],
licenses: ["Apache v2.0"],
links: %{github: "https://github.com/larshesel/phoenix_pubsub_vernemq"}]
end
end