Current section

Files

Jump to
time_log mix.exs
Raw

mix.exs

defmodule TimeLog.Mixfile do
use Mix.Project
def project do
[
app: :time_log,
version: "0.1.4",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
description: "Plug to log Phoenix requests and responses with a more accurate time than the custom Phoenix logger",
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :plug, :poison]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.0"},
{:poison, "~> 3.1"},
{:ex_doc, "~> 0.18", only: :dev}
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
end
defp docs do
[
extras: ["README.md"]
]
end
def package do
[
name: "time_log",
maintainers: ["sebi-beuren@web.de", "s.schneider@walz.de", "t.negd@walz.de"],
licenses: ["MIT"],
links: []
]
end
end