1
1
# GEDCOM to Laravel Model
2
- ![ Latest Stable Version] ( https://img.shields.io/github/release/modularsoftware /laravel-gedcom.svg )
3
- [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/modularsoftware /laravel-gedcom/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/modularsoftware /laravel-gedcom/?branch=master )
4
- [ ![ Build Status] ( https://scrutinizer-ci.com/g/modularsoftware /laravel-gedcom/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/modularsoftware /laravel-gedcom/build-status/master )
5
- [ ![ Code Intelligence Status] ( https://scrutinizer-ci.com/g/modularsoftware /laravel-gedcom/badges/code-intelligence.svg?b=master )] ( https://scrutinizer-ci.com/code-intelligence )
2
+ ![ Latest Stable Version] ( https://img.shields.io/github/release/genealogiawebsite /laravel-gedcom.svg )
3
+ [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/genealogiawebsite /laravel-gedcom/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/genealogiawebsite /laravel-gedcom/?branch=master )
4
+ [ ![ Build Status] ( https://scrutinizer-ci.com/g/genealogiawebsite /laravel-gedcom/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/genealogiawebsite /laravel-gedcom/build-status/master )
5
+ [ ![ Code Intelligence Status] ( https://scrutinizer-ci.com/g/genealogiawebsite /laravel-gedcom/badges/code-intelligence.svg?b=master )] ( https://scrutinizer-ci.com/code-intelligence )
6
6
[ ![ StyleCI] ( https://github.styleci.io/repos/268533904/shield?branch=master )] ( https://github.styleci.io/repos/268533904 )
7
- [ ![ CodeFactor] ( https://www.codefactor.io/repository/github/modularsoftware /laravel-gedcom/badge/master )] ( https://www.codefactor.io/repository/github/modularsoftware /laravel-gedcom/overview/master )
7
+ [ ![ CodeFactor] ( https://www.codefactor.io/repository/github/genealogiawebsite /laravel-gedcom/badge/master )] ( https://www.codefactor.io/repository/github/genealogiawebsite /laravel-gedcom/overview/master )
8
8
[ ![ codebeat badge] ( https://codebeat.co/badges/911f9e33-212a-4dfa-a860-751cdbbacff7 )] ( https://codebeat.co/projects/github-com-modulargenealogy-gedcom-laravel-gedcom-master )
9
- [ ![ Build Status] ( https://travis-ci.org/modularsoftware /laravel-gedcom.svg?branch=master )] ( https://travis-ci.org/modularsoftware /laravel-gedcom )
9
+ [ ![ Build Status] ( https://travis-ci.org/genealogiawebsite /laravel-gedcom.svg?branch=master )] ( https://travis-ci.org/genealogiawebsite /laravel-gedcom )
10
10
11
11
12
- modularsoftware /laravel-gedcom is a package to parse [ GEDCOM] ( https://en.wikipedia.org/wiki/GEDCOM ) files, and import them
12
+ genealogiawebsite /laravel-gedcom is a package to parse [ GEDCOM] ( https://en.wikipedia.org/wiki/GEDCOM ) files, and import them
13
13
as Laravel models, inside your Laravel application. It is used by:
14
- (https://github.com/modularsoftware /genealogy )
14
+ (https://github.com/genealogiawebsite /genealogy )
15
15
16
16
## Installation
17
17
```
18
- composer require modularsoftware /laravel-gedcom
18
+ composer require genealogiawebsite /laravel-gedcom
19
19
```
20
20
21
21
## Usage
@@ -32,14 +32,14 @@ php artisan gedcom:import /path/to/your/gedcom/file.ged
32
32
33
33
### via Facade
34
34
```
35
- use ModularSoftware \LaravelGedcom\Facades\GedcomParserFacade;
35
+ use GenealogiaWebsite \LaravelGedcom\Facades\GedcomParserFacade;
36
36
$filename = '/path/to/your/gedcom/file.ged';
37
37
GedcomParserFacade::parse($filename, true);
38
38
```
39
39
40
40
### via Instantiation
41
41
```
42
- use \ModularSoftware \LaravelGedcom\Utils\GedcomParser;
42
+ use \GenealogiaWebsite \LaravelGedcom\Utils\GedcomParser;
43
43
$filename = '/path/to/your/gedcom/file.ged';
44
44
$parser = new GedcomParser();
45
45
$parser->parse($filename, true);
@@ -48,7 +48,7 @@ $parser->parse($filename, true);
48
48
## Documentation
49
49
50
50
### Database
51
- This package relies on the database tables already in modularsoftware /genealogy
51
+ This package relies on the database tables already in genealogiawebsite /genealogy
52
52
which map to models:
53
53
54
54
### ` parse() ` Method
0 commit comments