README.md
# Raxx.MethodOverride
**Override HTTP methods using the request body**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `raxx_method_override` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:raxx_method_override, "~> 0.1.0"}]
end
```
2. Ensure `raxx_method_override` is started before your application:
```elixir
def application do
[applications: [:raxx_method_override]]
end
```