forked from phoenixframework/phoenix_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (38 loc) · 978 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
defmodule PhoenixHtml.Mixfile do
use Mix.Project
# Also change package.json version
@version "2.12.0"
def project do
[
app: :phoenix_html,
version: @version,
elixir: "~> 1.3",
deps: deps(),
name: "Phoenix.HTML",
description: "Phoenix.HTML functions for working with HTML strings and templates",
package: package(),
docs: [
source_ref: "v#{@version}",
main: "Phoenix.HTML",
source_url: "https://github.com/phoenixframework/phoenix_html"
]
]
end
def application do
[applications: [:logger, :plug]]
end
defp deps do
[
{:plug, "~> 1.5"},
{:ex_doc, "~> 0.18", only: :docs}
]
end
defp package do
[
maintainers: ["Chris McCord", "José Valim"],
licenses: ["MIT"],
links: %{github: "https://github.com/phoenixframework/phoenix_html"},
files: ~w(lib priv CHANGELOG.md LICENSE mix.exs package.json README.md)
]
end
end