Skip to content

Commit

Permalink
updated .gitignore and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kodegrenade committed Sep 22, 2023
1 parent 007c5dd commit b0be52f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 26 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ vendor
composer.lock
build
loader.*
todo.*
todo.*
*.zip
50 changes: 25 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ This will generate a fake person data with yoruba names.

```object
{
title: 'Engr.',
firstName: 'Akintunde',
lastName: 'Owoyele',
fullName: 'Akintunde Owoyele',
email: 'akintunde.owoyele@gmail.com',
phone: '+2349093636382',
address: '63, Ebubedike Uzoma Avenue, Awka'
"title": 'Engr.',
"firstName": 'Akintunde',
"lastName": 'Owoyele',
"fullName": 'Akintunde Owoyele',
"email": 'akintunde.owoyele@gmail.com',
"phone": '+2349093636382',
"address": '63, Ebubedike Uzoma Avenue, Awka'
}
```

Expand Down Expand Up @@ -120,28 +120,28 @@ This will generate three (3) female fake persons with igbo names.
```bash
[
{
"title" => Dr.
"fullname" => Chinweuba Enyinnaya
"gender" => Female
"email" => chinweuba.enyinnaya@protonmail.com
"phone" => +2348088176205
"address" => 86 Crescent Itu, Imo
"title" => "Dr."
"fullname" => "Chinweuba Enyinnaya"
"gender" => "Female"
"email" => "chinweuba.enyinnaya@protonmail.com"
"phone" => "+2348088176205"
"address" => "86 Crescent Itu, Imo"
},
{
"title" => Prof.
"fullname" => Akachukwu Ndubisi
"gender" => Female
"email" => akachukwundubisi@yahoo.com
"phone" => +2349025762928
"address" => 199 Avenue Ilobu, Oyo
"title" => "Prof."
"fullname" => "Akachukwu Ndubisi"
"gender" => "Female"
"email" => "akachukwundubisi@yahoo.com"
"phone" => "+2349025762928"
"address" => "199 Avenue Ilobu, Oyo"
},
{
"title" => Mrs.
"fullname" => Ngozi Zeribe
"gender" => Female
"email" => ngozi.zeribe@gmail.com
"phone" => +2347034743668
"address" => 156 Crescent Bonny, Bayelsa
"title" => "Mrs."
"fullname" => "Ngozi Zeribe"
"gender" => "Female"
"email" => "ngozi.zeribe@gmail.com"
"phone" => "+2347034743668"
"address" => "156 Crescent Bonny, Bayelsa"
}
]
```
Expand Down

0 comments on commit b0be52f

Please sign in to comment.