{"id":13509197,"url":"https://github.com/elixirs/faker","last_synced_at":"2025-05-12T13:23:39.368Z","repository":{"id":15833212,"uuid":"18573162","full_name":"elixirs/faker","owner":"elixirs","description":"Faker is a pure Elixir library for generating fake data.","archived":false,"fork":false,"pushed_at":"2025-05-09T19:46:54.000Z","size":1152,"stargazers_count":1124,"open_issues_count":57,"forks_count":218,"subscribers_count":16,"default_branch":"dev","last_synced_at":"2025-05-09T20:39:26.767Z","etag":null,"topics":["data","data-generator","database","developer-tools","dummy","elixir","fake-content","faker","generator","hacktoberfest","phoenix","qa","seed","seeding","test","testing","testing-tools"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"chaosmail/angular-dchart","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elixirs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-04-08T20:05:26.000Z","updated_at":"2025-05-07T07:51:43.000Z","dependencies_parsed_at":"2024-01-26T05:07:07.761Z","dependency_job_id":"20e2e0ca-3eb7-4fa3-8f92-af63cffaf161","html_url":"https://github.com/elixirs/faker","commit_stats":{"total_commits":568,"total_committers":110,"mean_commits":5.163636363636364,"dds":0.6320422535211268,"last_synced_commit":"c217c88f5c968146ea4c5fb0120df3dcf9175ab4"},"previous_names":["igas/faker"],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixirs%2Ffaker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixirs%2Ffaker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixirs%2Ffaker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixirs%2Ffaker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elixirs","download_url":"https://codeload.github.com/elixirs/faker/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253745503,"owners_count":21957386,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data","data-generator","database","developer-tools","dummy","elixir","fake-content","faker","generator","hacktoberfest","phoenix","qa","seed","seeding","test","testing","testing-tools"],"created_at":"2024-08-01T02:01:04.407Z","updated_at":"2025-05-12T13:23:39.348Z","avatar_url":"https://github.com/elixirs.png","language":"Elixir","readme":"# Faker\n\n[![build](https://github.com/elixirs/faker/actions/workflows/ci.yaml/badge.svg)](https://github.com/elixirs/faker/actions/workflows/ci.yaml)\n[![Version](https://img.shields.io/hexpm/v/faker.svg?style=flat-square)](https://hex.pm/packages/faker)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/faker/)\n[![License](https://img.shields.io/hexpm/l/faker.svg?style=flat-square)](https://github.com/elixirs/faker/blob/master/LICENSE)\n[![Issues](https://img.shields.io/github/issues/elixirs/faker.svg?style=flat-square)](https://github.com/elixirs/faker/issues)\n[![Downloads](https://img.shields.io/hexpm/dt/faker.svg?style=flat-square)](https://hex.pm/packages/faker)\n[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg?style=flat-square)](https://gitter.im/igas/faker)\n[![Last Updated](https://img.shields.io/github/last-commit/elixirs/faker.svg)](https://github.com/elixirs/faker/commits/master)\n\n**Faker** is a pure [Elixir](http://elixir-lang.org/) library for generating\nfake data.\n\n- [Faker](#faker)\n  - [Quickstart](#quickstart)\n  - [Requirements](#requirements)\n  - [Usage](#usage)\n  - [Troubleshooting](#troubleshooting)\n  - [Tools](#tools)\n  - [Templating](#contributing)\n  - [Team](#team)\n  - [Contributing](#contributing)\n  - [Thanks](#thanks)\n  - [License](#license)\n\n## Quickstart\n\n* add `{:faker, \"~\u003e 0.19.0-alpha.1\"}` to your deps in `mix.exs`:\n\n    ```elixir\n    defp deps do\n      [\n        {:faker, \"~\u003e 0.19.0-alpha.1\", only: :test}\n      ]\n    end\n    ```\n\n* run:\n\n    ```\n    mix deps.get\n    ```\n\n* add `Faker.start()` to `test/test_helper.exs`:\n\n    ```elixir\n    ExUnit.start()\n    Faker.start()\n    ```\n\n* jump to [usage examples](#usage).\n\n### Requirements\n\n* OTP 19+\n* Elixir 1.6+\n\n## Usage\n\nSee [documentation](http://hexdocs.pm/faker/) and [usage examples](https://github.com/elixirs/faker/blob/master/USAGE.md).\n\n## Troubleshooting\n\n* If you get a message like the one below when you call `Faker.Address.city/0`,\nyou need to add `:faker` to your application's mix file, in the `applications`\nfunction, as above.\n\n    ```\n    ** (FunctionClauseError) no function clause matching in Faker.Address.city_count/1\n    lib/faker/address.ex:48: Faker.Address.city_count(nil)\n    lib/faker/address.ex:41: Faker.Address.city/0\n    ```\n\n## Tools\n\nFaker was designed as a lightweight library, that's why it can be easily used\nwith other tools.\n\n## Templating\n\nYou can build templates for testing purposes with the\n[Blacksmith](https://github.com/batate/blacksmith) project. See the Blacksmith\n[readme](https://github.com/batate/blacksmith#readme) for details.\n\n## Team\n\nFaker was originally written by [Igor Kapkov](https://igas.me).\n\nCurrent list of maintainers:\n\n* [Anthony Smith](https://github.com/anthonator)\n* [Igor Kapkov](https://igas.me)\n* [Toby Hinloopen](https://github.com/tobyhinloopen)\n* [Vitor Oliveira](https://github.com/vbrazo)\n\n## Contributing\n\nDo you want to become a maintainer?\n\nSee our [CONTRIBUTING.md](https://github.com/elixirs/faker/blob/master/CONTRIBUTING.md) and start contributing today. We usually elect new maintainers based on contributions.\n\n## Thanks\n\n[![Sponsored by Evil Martians](https://evilmartians.com/badges/sponsored-by-evil-martians.svg)](https://evilmartians.com/)\n\n## [License](https://github.com/elixirs/faker/blob/master/LICENSE)\n\nReleased under the MIT License.\n","funding_links":[],"categories":["Testing","Elixir"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felixirs%2Ffaker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felixirs%2Ffaker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felixirs%2Ffaker/lists"}