familytree365/laravel-gedcom
最新稳定版本:v3.4.4
Composer 安装命令:
composer require familytree365/laravel-gedcom
包简介
A package that converts gedcom files to Eloquent models
README 文档
README
familytree365/laravel-gedcom is a package to parse GEDCOM files, and import them as Laravel models, inside your Laravel application. It is used by: (https://github.com/familytree365/genealogy)
Installation
composer require familytree365/laravel-gedcom
Usage
You must create the database schema before doing anything, so run the migrations:
php artisan migrate
via Command Line
php artisan gedcom:import /path/to/your/gedcom/file.ged
via Facade
use FamilyTree365\LaravelGedcom\Facades\GedcomParserFacade;
$filename = '/path/to/your/gedcom/file.ged';
GedcomParserFacade::parse($filename, true);
via Instantiation
use \FamilyTree365\LaravelGedcom\Utils\GedcomParser;
$filename = '/path/to/your/gedcom/file.ged';
$parser = new GedcomParser();
$parser->parse($filename, true);
Documentation
Database
This package will create the database tables, which map to models.
parse() Method
The parse() method takes three parameters, string $filename, bool $progressBar = false
and string $conn
If you set $progressBar to true, a ProgressBar will be output to php://stdout, which is useful when you are calling
the parser from Artisan commands.
Contributing
Pull requests are welcome, as are issues.
Contributors
License
MIT License (see License.md). This means you must retain the copyright and permission notice is all copies, or substantial portions of this software.
统计信息
- 总下载量: 9.61k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-25