README.md

# Ffaker

elixir porting of <https://github.com/ffaker/ffaker>

## Installation

The package can be installed as:

  1. Add `ffaker` to your list of dependencies in `mix.exs`:

    ```elixir
    def deps do
      [{:ffaker, "~> 0.0.1"}]
    end
    ```

  2. Ensure `ffaker` is started before your application:

    ```elixir
    def application do
      [applications: [:ffaker]]
    end
    ```