PHPackages                             joaopaulolndev/filament-check-ssl-widget - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. joaopaulolndev/filament-check-ssl-widget

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

joaopaulolndev/filament-check-ssl-widget
========================================

A filamentPHP widget to get details about ssl certificate

v3.0.0(3mo ago)181.4k2MITPHPPHP ^8.2CI passing

Since Jun 27Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/joaopaulolndev/filament-check-ssl-widget)[ Packagist](https://packagist.org/packages/joaopaulolndev/filament-check-ssl-widget)[ Docs](https://github.com/joaopaulolndev/filament-check-ssl-widget)[ GitHub Sponsors](https://github.com/joaopaulolndev)[ RSS](/packages/joaopaulolndev-filament-check-ssl-widget/feed)WikiDiscussions 3.x Synced 1mo ago

READMEChangelog (7)Dependencies (10)Versions (11)Used By (0)

A filamentPHP widget to get details about ssl certificate
=========================================================

[](#a-filamentphp-widget-to-get-details-about-ssl-certificate)

[![Latest Version on Packagist](https://camo.githubusercontent.com/86ffff70689d0768062ec9564cbd9531f3c0a098b5ba9da1cd55a7b8512f936f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6f616f7061756c6f6c6e6465762f66696c616d656e742d636865636b2d73736c2d7769646765742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/joaopaulolndev/filament-check-ssl-widget)[![GitHub Tests Action Status](https://camo.githubusercontent.com/113f63dac2192484a3cfa6e87e48e3ce70aa023ab3170b6b3ee77f5bd3a84064/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6f616f7061756c6f6c6e6465762f66696c616d656e742d636865636b2d73736c2d7769646765742f72756e2d74657374732e796d6c3f6272616e63683d322e78266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/joaopaulolndev/filament-check-ssl-widget/actions?query=workflow%3Arun-tests+branch%3A2.x)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/04be8a2d2311ad3927e680914900aa6c5e68f3716ddff5c37d10f1028caef36a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6a6f616f7061756c6f6c6e6465762f66696c616d656e742d636865636b2d73736c2d7769646765742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d322e78266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/joaopaulolndev/filament-check-ssl-widget/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3A2.x)[![Total Downloads](https://camo.githubusercontent.com/9d2b660b4cdfced7b81d3d93c2faf96cb5feb0320c9441c718485ff3c7144726/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f616f7061756c6f6c6e6465762f66696c616d656e742d636865636b2d73736c2d7769646765742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/joaopaulolndev/filament-check-ssl-widget)

The Filament Check Ssl plugin widget designed to show the detail informations about the ssl certificate given domains.

[![Screenshot of Application Feature](https://raw.githubusercontent.com/joaopaulolndev/filament-check-ssl-widget/3.x/art/joaopaulolndev-filament-check-ssl-widget.jpg)](https://raw.githubusercontent.com/joaopaulolndev/filament-check-ssl-widget/3.x/art/joaopaulolndev-filament-check-ssl-widget.jpg)

Compatibility
-------------

[](#compatibility)

Package VersionFilament Version1.x3.x2.x4.x3.x5.xInstallation
------------

[](#installation)

You can install the package via composer:

```
composer require joaopaulolndev/filament-check-ssl-widget:^3.0
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-check-ssl-widget-views"
```

Optionally, you can publish the translations using

```
php artisan vendor:publish --tag="filament-check-ssl-widget-translations"
```

Usage
-----

[](#usage)

Add in AdminPanelProvider.php

```
use Joaopaulolndev\FilamentCheckSslWidget\FilamentCheckSslWidgetPlugin;

->plugins([
    FilamentCheckSslWidgetPlugin::make()
        ->domains([
            'laravel.com',
            'filamentphp.com',
            'github.com'
        ])
])
```

Optionally, you can add more configs as example below:

```
use Joaopaulolndev\FilamentCheckSslWidget\FilamentCheckSslWidgetPlugin;

FilamentCheckSslWidgetPlugin::make()
    ->domains([
        'laravel.com',
        'filamentphp.com',
        'github.com'
    ])
    ->shouldShowTitle(false) // Optional show title default is: true
    ->setTitle('Certificates') // Optional
    ->setDescription('SSL certificate detail')  // Optional
    ->setQuantityPerRow(1) //Optional quantity per row default is: 1
    ->setColumnSpan('full') //Optional column span default is: '1/2'
    ->setSort(10)
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [João Paulo Leite Nascimento](https://github.com/joaopaulolndev)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

50

—

FairBetter than 96% of packages

Maintenance86

Actively maintained with recent releases

Popularity27

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~79 days

Recently: every ~57 days

Total

9

Last Release

47d ago

Major Versions

v1.0.3 → v2.0.02025-08-11

v1.0.4 → 2.x-dev2026-01-20

2.x-dev → v3.0.02026-01-20

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/6bc80e83b4acca3d0efddfb786ec3a1265c7076e398d3a0e164917753e571d4b?d=identicon)[joaopaulolndev](/maintainers/joaopaulolndev)

---

Top Contributors

[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (24 commits)")[![joaopaulolndev](https://avatars.githubusercontent.com/u/11706937?v=4)](https://github.com/joaopaulolndev "joaopaulolndev (18 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (10 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")[![a21ns1g4ts](https://avatars.githubusercontent.com/u/11599205?v=4)](https://github.com/a21ns1g4ts "a21ns1g4ts (1 commits)")

---

Tags

laraveljoaopaulolndevfilament-check-ssl-widget

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/joaopaulolndev-filament-check-ssl-widget/health.svg)

```
[![Health](https://phpackages.com/badges/joaopaulolndev-filament-check-ssl-widget/health.svg)](https://phpackages.com/packages/joaopaulolndev-filament-check-ssl-widget)
```

###  Alternatives

[joaopaulolndev/filament-general-settings

Filament package to manage general settings

18129.7k](/packages/joaopaulolndev-filament-general-settings)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[joaopaulolndev/filament-world-clock

Show hours around the world by timezone

3111.9k](/packages/joaopaulolndev-filament-world-clock)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)

PHPackages © 2026

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