PHPackages                             reyemtech/laravel-vcard - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. reyemtech/laravel-vcard

ActiveLibrary

reyemtech/laravel-vcard
=======================

A fluent builder class for vCard files.

1.0.2(2mo ago)0449MITPHPPHP ^8.2CI passing

Since Nov 9Pushed 2mo agoCompare

[ Source](https://github.com/reyemtech/laravel-vcard)[ Packagist](https://packagist.org/packages/reyemtech/laravel-vcard)[ Docs](https://github.com/reyemtech/laravel-vcard)[ RSS](/packages/reyemtech-laravel-vcard/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (8)Versions (4)Used By (0)

Laravel vCard
=============

[](#laravel-vcard)

[![Latest Version](https://camo.githubusercontent.com/0ed466d8ee082c8992f5c4a07746ba77bcef951482475608668236311a13e905/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726579656d746563682f6c61726176656c2d76636172642e7376673f6c6162656c3d52656c65617365267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/reyemtech/laravel-vcard)[![MIT License](https://camo.githubusercontent.com/7f1f40358441f8604df25052ac739409323d0ee21b381d0ef7ec0e23cda1bb43/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f726579656d746563682f6c61726176656c2d76636172642e7376673f6c6162656c3d4c6963656e736526636f6c6f723d626c7565267374796c653d666f722d7468652d6261646765)](https://github.com/Astrotomic/laravel-vcard/blob/master/LICENSE)

[![Total Downloads](https://camo.githubusercontent.com/55ea988b807d8e620f3110f3e1d5c5f9841ea8257186f772b77c609c2ac000cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726579656d746563682f6c61726176656c2d76636172642e7376673f6c6162656c3d446f776e6c6f616473267374796c653d666c61742d737175617265)](https://packagist.org/packages/reyemtech/laravel-vcard)

A fluent builder class for vCard files.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require reyemtech/laravel-vcard
```

Usage
-----

[](#usage)

```
use Astrotomic\Vcard\Properties\Email;
use Astrotomic\Vcard\Properties\Gender;
use Astrotomic\Vcard\Properties\Kind;
use Astrotomic\Vcard\Properties\SocialProfile;
use Astrotomic\Vcard\Properties\Tel;
use Astrotomic\Vcard\Vcard;
use Carbon\Carbon;

Vcard::make()
    ->kind(Kind::INDIVIDUAL)
    ->gender(Gender::MALE)
    ->fullName('John Adam Smith')
    ->name('Smith', 'John', 'Adam')
    ->email('john.smith@mail.com')
    ->email('john.smith@company.com', [Email::WORK, Email::INTERNET])
    ->tel('+1234567890', [Tel::HOME, Tel::VOICE])
    ->tel('+0987654321', [Tel::WORK, Tel::VOICE])
    ->tel('+0123456789', [Tel::CELL, Tel::VOICE])
    ->url('https://johnsmith.com')
    ->url('https://company.com')
    ->social(SocialProfile::TWITTER, 'https://www.twitter.com/johnsmith')
    ->social(SocialProfile::FACEBOOK, 'https://www.facebook.com/johnsmith')
    ->social(SocialProfile::LINKEDIN, 'https://www.linkedin.com/in/johnsmith')
    ->bday(Carbon::parse('1990-06-24'))
    ->adr('','','1600 Pennsylvania Ave NW', 'Washington', 'DC', '20500-0003', 'USA')
    ->photo('data:image/jpeg;base64,'.base64_encode(file_get_contents(__DIR__.'/stubs/photo.jpg')))
    ->title('V. P. Research and Development')
    ->role('Excecutive')
    ->org('Google', 'GMail Team', 'Spam Detection Squad')
    ->member('john.smith@company.com', '550e8400-e29b-11d4-a716-446655440000')
    ->note('Hello world')
;
```

```
BEGIN:VCARD
VERSION:4.0
FN;CHARSET=UTF-8:John Adam Smith
N;CHARSET=UTF-8:Smith;John;Adam;;
KIND:individual
GENDER:M
EMAIL;TYPE=INTERNET:john.smith@mail.com
EMAIL;TYPE=WORK;TYPE=INTERNET:john.smith@company.com
TEL;TYPE=HOME;TYPE=VOICE:+1234567890
TEL;TYPE=WORK;TYPE=VOICE:+0987654321
TEL;TYPE=CELL;TYPE=VOICE:+0123456789
URL:https://johnsmith.com
URL:https://company.com
X-SOCIALPROFILE:type=twitter:https://www.twitter.com/johnsmith
X-SOCIALPROFILE:type=facebook:https://www.facebook.com/johnsmith
X-SOCIALPROFILE:type=linkedin:https://www.linkedin.com/in/johnsmith
BDAY:1990-06-24
ADR;TYPE=WORK:;;1600 Pennsylvania Ave NW;Washington;DC;20500-0003;USA
PHOTO;data:image/jpeg;base64,...
TITLE:V. P. Research and Development
ROLE:Excecutive
ORG:Google;GMail Team;Spam Detection Squad
MEMBER:urn:uuid:550e8400-e29b-11d4-a716-446655440000
REV:2021-02-25T10:30:45.000000Z
PRODID:-//Astrotomic vCard
END:VCARD
```

###  Health Score

45

—

FairBetter than 92% of packages

Maintenance85

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 71.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~236 days

Total

3

Last Release

76d ago

PHP version history (2 changes)1.0.0PHP ^8.1

1.0.1PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/79399147ddc617e3c70a84cfc7ebfc49b99488f4c1743b83ae61890bf6410e11?d=identicon)[mariomeyer](/maintainers/mariomeyer)

---

Top Contributors

[![Gummibeer](https://avatars.githubusercontent.com/u/6187884?v=4)](https://github.com/Gummibeer "Gummibeer (55 commits)")[![Antonides](https://avatars.githubusercontent.com/u/3648894?v=4)](https://github.com/Antonides "Antonides (7 commits)")[![Iskari](https://avatars.githubusercontent.com/u/3002884?v=4)](https://github.com/Iskari "Iskari (5 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![avenjamin](https://avatars.githubusercontent.com/u/869534?v=4)](https://github.com/avenjamin "avenjamin (2 commits)")[![mariomeyer](https://avatars.githubusercontent.com/u/867650?v=4)](https://github.com/mariomeyer "mariomeyer (2 commits)")[![Baspa](https://avatars.githubusercontent.com/u/10845460?v=4)](https://github.com/Baspa "Baspa (1 commits)")[![JacquesLG](https://avatars.githubusercontent.com/u/5540991?v=4)](https://github.com/JacquesLG "JacquesLG (1 commits)")[![Wefabric-Kevin](https://avatars.githubusercontent.com/u/95614672?v=4)](https://github.com/Wefabric-Kevin "Wefabric-Kevin (1 commits)")

---

Tags

laravelvCardvcfcontactcontacts

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/reyemtech-laravel-vcard/health.svg)

```
[![Health](https://phpackages.com/badges/reyemtech-laravel-vcard/health.svg)](https://phpackages.com/packages/reyemtech-laravel-vcard)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k96.9M673](/packages/laravel-socialite)[astrotomic/laravel-vcard

A fluent builder class for vCard files.

5330.0k](/packages/astrotomic-laravel-vcard)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

71510.9M66](/packages/laravel-mcp)[proengsoft/laravel-jsvalidation

Validate forms transparently with Javascript reusing your Laravel Validation Rules, Messages, and FormRequest

1.1k2.3M49](/packages/proengsoft-laravel-jsvalidation)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
