Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaopaulolndev/filament-check-ssl-widget
The Filament Check Ssl plugin widget designed to show the detail informations about the ssl certificate given domains.
https://github.com/joaopaulolndev/filament-check-ssl-widget
Last synced: 16 days ago
JSON representation
The Filament Check Ssl plugin widget designed to show the detail informations about the ssl certificate given domains.
- Host: GitHub
- URL: https://github.com/joaopaulolndev/filament-check-ssl-widget
- Owner: joaopaulolndev
- License: mit
- Created: 2024-06-27T10:24:44.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T22:55:31.000Z (7 months ago)
- Last Synced: 2024-11-07T09:05:43.608Z (3 months ago)
- Language: PHP
- Size: 180 KB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# A filamentPHP widget to get details about ssl certificate
[![Latest Version on Packagist](https://img.shields.io/packagist/v/joaopaulolndev/filament-check-ssl-widget.svg?style=flat-square)](https://packagist.org/packages/joaopaulolndev/filament-check-ssl-widget)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/joaopaulolndev/filament-check-ssl-widget/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/joaopaulolndev/filament-check-ssl-widget/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/joaopaulolndev/filament-check-ssl-widget/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/joaopaulolndev/filament-check-ssl-widget/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/joaopaulolndev/filament-check-ssl-widget.svg?style=flat-square)](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/main/art/joaopaulolndev-filament-check-ssl-widget.jpg)
## Installation
You can install the package via composer:
```bash
composer require joaopaulolndev/filament-check-ssl-widget
```Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="filament-check-ssl-widget-views"
```Optionally, you can publish the translations using
```bash
php artisan vendor:publish --tag="filament-check-ssl-widget-translations"
```## Usage
Add in AdminPanelProvider.php```php
use Joaopaulolndev\FilamentCheckSslWidget\FilamentCheckSslWidgetPlugin;->plugins([
FilamentCheckSslWidgetPlugin::make()
->domains([
'laravel.com',
'filamentphp.com',
'github.com'
])
])
```Optionally, you can add more configs as example below:
```php
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
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [João Paulo Leite Nascimento](https://github.com/joaopaulolndev)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.