forked from phoenixframework/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
40 lines (37 loc) · 1.14 KB
/
mix.exs
File metadata and controls
40 lines (37 loc) · 1.14 KB
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
defmodule Phoenix.Mixfile do
use Mix.Project
def project do
[app: :phoenix,
version: "0.6.0",
elixir: "~> 1.0.2 or ~> 1.1",
deps: deps,
package: [
contributors: ["Chris McCord", "Darko Fabijan", "José Valim"],
licenses: ["MIT"],
links: %{github: "https://github.com/phoenixframework/phoenix"}
],
description: """
Elixir Web Framework targeting full-featured, fault tolerant applications
with realtime functionality
"""]
end
def application do
[mod: {Phoenix, []},
applications: [:plug, :linguist, :poison, :logger],
env: [code_reloader: false,
template_engines: [],
format_encoders: [],
pubsub: [garbage_collect_after_ms: 60_000..300_000],
filter_parameters: ["password"]]]
end
def deps do
[{:cowboy, "~> 1.0", optional: true},
{:linguist, "~> 0.1.4"},
{:plug, "~> 0.8.3"},
{:poison, "~> 1.2"},
{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.6", only: :docs},
{:inch_ex, "~> 0.2", only: :docs},
{:websocket_client, github: "jeremyong/websocket_client", only: :test}]
end
end