Packages

Phoenix Template Engine for the django template language

Current section

Files

Jump to
Raw

mix.exs

defmodule PhoenixDtl.Mixfile do
use Mix.Project
def project do
[
app: :phoenix_dtl,
version: "0.0.1",
elixir: "~> 0.15.0",
deps: deps,
package: [
contributors: ["Andreas Gerstmayr"],
licenses: ["MIT"],
links: [github: "https://github.com/andihit/phoenix_dtl"]
],
description: """
Phoenix Template Engine for the django template language
"""
]
end
def application do
[applications: []]
end
defp deps do
[
{:phoenix, github: "phoenixframework/phoenix"},
{:cowboy, "~> 1.0.0", only: [:dev, :test]},
{:erlydtl, github: "andihit/erlydtl", branch: "windows-support-v0.9.4"}
]
end
end