forked from phoenixframework/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
64 lines (55 loc) · 1.99 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
defmodule Phoenix.Mixfile do
use Mix.Project
@version "1.1.2-dev"
def project do
[app: :phoenix,
version: @version,
elixir: "~> 1.0.2 or ~> 1.1",
deps: deps,
package: package,
# Because we define protocols on the fly to test
# Phoenix.Param, we need to disable consolidation
# for the test environment for Elixir v1.2 onward.
consolidate_protocols: Mix.env != :test,
name: "Phoenix",
docs: [source_ref: "v#{@version}", main: "Phoenix", logo: "logo.png"],
source_url: "https://github.com/phoenixframework/phoenix",
homepage_url: "http://www.phoenixframework.org",
description: """
Productive. Reliable. Fast. A productive web framework that
does not compromise speed and maintainability.
"""]
end
def application do
[mod: {Phoenix, []},
applications: [:plug, :poison, :logger, :eex],
env: [stacktrace_depth: nil,
template_engines: [],
format_encoders: [],
generators: [],
filter_parameters: ["password"],
serve_endpoints: false,
gzippable_exts: ~w(.js .css .txt .text .html .json)]]
end
defp deps do
[{:cowboy, "~> 1.0", optional: true},
{:plug, "~> 1.0"},
{:poison, "~> 1.3"},
{:gettext, "~> 0.8", only: :test},
# Docs dependencies
{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.11", only: :docs},
{:inch_ex, "~> 0.2", only: :docs},
# Test dependencies
{:phoenix_html, "~> 1.2", only: :test},
{:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}]
end
defp package do
[maintainers: ["Chris McCord", "José Valim", "Lance Halvorsen",
"Jason Stiebs", "Eric Meadows-Jönsson", "Sonny Scroggin"],
licenses: ["MIT"],
links: %{github: "https://github.com/phoenixframework/phoenix"},
files: ~w(lib priv test/shared web) ++
~w(brunch-config.js CHANGELOG.md LICENSE.md mix.exs package.json README.md)]
end
end