{"id":15296460,"url":"https://github.com/cgdsoftware/laravel-gedcom","last_synced_at":"2025-10-07T08:31:04.725Z","repository":{"id":41832096,"uuid":"268533904","full_name":"cgdsoftware/laravel-gedcom","owner":"cgdsoftware","description":"Package to parse GEDCOM files, and import them into Laravel.  Export GEDCOM 5.5.1 files from Laravel.","archived":false,"fork":true,"pushed_at":"2023-06-08T09:44:30.000Z","size":347,"stargazers_count":22,"open_issues_count":2,"forks_count":10,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-25T20:34:16.672Z","etag":null,"topics":["gedcom","gedcom-parser","genealogy","laravel","php","php-library","php8"],"latest_commit_sha":null,"homepage":"https://www.facebook.com/familytree365","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"agjmills/laravel-gedcom","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cgdsoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"familytree365"}},"created_at":"2020-06-01T13:43:59.000Z","updated_at":"2025-06-23T20:32:03.000Z","dependencies_parsed_at":"2023-02-01T06:01:19.172Z","dependency_job_id":null,"html_url":"https://github.com/cgdsoftware/laravel-gedcom","commit_stats":null,"previous_names":[],"tags_count":100,"template":false,"template_full_name":null,"purl":"pkg:github/cgdsoftware/laravel-gedcom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgdsoftware%2Flaravel-gedcom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgdsoftware%2Flaravel-gedcom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgdsoftware%2Flaravel-gedcom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgdsoftware%2Flaravel-gedcom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cgdsoftware","download_url":"https://codeload.github.com/cgdsoftware/laravel-gedcom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgdsoftware%2Flaravel-gedcom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278743029,"owners_count":26037954,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["gedcom","gedcom-parser","genealogy","laravel","php","php-library","php8"],"created_at":"2024-09-30T18:10:35.203Z","updated_at":"2025-10-07T08:31:04.015Z","avatar_url":"https://github.com/cgdsoftware.png","language":"PHP","funding_links":["https://github.com/sponsors/familytree365"],"categories":[],"sub_categories":[],"readme":"# GEDCOM to Laravel Model\n ![Latest Stable Version](https://img.shields.io/github/release/familytree365/laravel-gedcom.svg) \n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/familytree365/laravel-gedcom/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/familytree365/laravel-gedcom/?branch=master)\n[![Build Status](https://scrutinizer-ci.com/g/familytree365/laravel-gedcom/badges/build.png?b=master)](https://scrutinizer-ci.com/g/familytree365/laravel-gedcom/build-status/master)\n[![Code Intelligence Status](https://scrutinizer-ci.com/g/genealogiawebsite/laravel-gedcom/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence)\n[![StyleCI](https://github.styleci.io/repos/268533904/shield?branch=master)](https://github.styleci.io/repos/268533904)\n[![CodeFactor](https://www.codefactor.io/repository/github/familytree365/laravel-gedcom/badge/master)](https://www.codefactor.io/repository/github/familytree365/laravel-gedcom/overview/master)\n[![codebeat badge](https://codebeat.co/badges/911f9e33-212a-4dfa-a860-751cdbbacff7)](https://codebeat.co/projects/github-com-modulargenealogy-gedcom-laravel-gedcom-master)\n[![Build Status](https://travis-ci.org/familytree365/laravel-gedcom.svg?branch=master)](https://travis-ci.org/familytree365/laravel-gedcom)\n\n\nfamilytree365/laravel-gedcom is a package to parse [GEDCOM](https://en.wikipedia.org/wiki/GEDCOM) files, and import them \nas Laravel models, inside your Laravel application. It is used by:\n(https://github.com/familytree365/genealogy)\n\n## Installation\n```\ncomposer require familytree365/laravel-gedcom\n```\n\n## Usage\n\nYou must create the database schema before doing anything, so run the migrations:\n```\nphp artisan migrate\n```\n\n### via Command Line\n```\nphp artisan gedcom:import /path/to/your/gedcom/file.ged\n```\n\n### via Facade\n```\nuse FamilyTree365\\LaravelGedcom\\Facades\\GedcomParserFacade;\n$filename = '/path/to/your/gedcom/file.ged';\nGedcomParserFacade::parse($filename, true);\n```\n\n### via Instantiation\n```\nuse \\FamilyTree365\\LaravelGedcom\\Utils\\GedcomParser;\n$filename = '/path/to/your/gedcom/file.ged';\n$parser = new GedcomParser();\n$parser-\u003eparse($filename, true);\n```\n\n## Documentation\n\n### Database\nThis package will create the database tables, which map to models.\n\n### `parse()` Method\nThe `parse()` method takes three parameters, `string $filename`, `bool $progressBar = false`\nand `string $conn` \nIf you set `$progressBar` to true, a ProgressBar will be output to `php://stdout`, which is useful when you are calling\nthe parser from Artisan commands.\n\n## Contributing \n\nPull requests are welcome, as are issues.\n\n## Contributors\n\n\n\n## License\n\nMIT License (see License.md). This means you must retain the copyright and permission notice is all copies, or \nsubstantial portions of this software. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcgdsoftware%2Flaravel-gedcom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcgdsoftware%2Flaravel-gedcom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcgdsoftware%2Flaravel-gedcom/lists"}