The class provided by this package makes it incredibly easy to query the properties on an ssl certificate. Here's an example:
use Spatie\SslCertificate\SslCertificate;
$certificate = SslCertificate::createForHostName('spatie.be');
$certificate->getIssuer(); // returns "Let's Encrypt Authority X3"
$certificate->isValid(); // returns true if the certificate is currently valid
$certificate->expirationDate(); // returns an instance of Carbon
$certificate->expirationDate()->diffInDays(); // returns an int
$certificate->getSignatureAlgorithm(); // returns a string
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
You're free to use this package (it's MIT-licensed), but if it makes it to your production environment you are required to send us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
The best postcards will get published on the open source page on our website.
You can install the package via composer:
composer require spatie/ssl-certificate
Currently this package does not check if the certificate is signed by a trusted authority. We'll add this check soon in a next point release.
You can create an instance of Spatie\SslCertificate\SslCertificate
with this named constructor:
$certificate = SslCertificate::createForHostName('spatie.be');
You can use this fluent style to specify a specific port to connect to.
SslCertificate::download()
->usingPort($customPort)
->forHost($hostName);
If the given hostName
is invalid Spatie\SslCertificate\InvalidUrl
will be thrown.
If the given hostName
is valid but there was a problem downloading the certifcate Spatie\SslCertificate\CouldNotDownloadCertificate
will be thrown.
$certificate->getIssuer(); // returns "Let's Encrypt Authority X3"
Returns the primary domain name for the certificate
$certificate->getDomain(); // returns "spatie.be"
Returns the algorithm used for signing the certificate
$certificate->getSignatureAlgorithm(); // returns "RSA-SHA256"
A certificate can cover multiple (sub)domains. Here's how to get them.
$certificate->getAdditionalDomains(); // returns ["spatie.be", "www.spatie.be]
A domain name return with this method can start with *
meaning it is valid for all subdomains of that domain.
$this->certificate->validFromDate(); // returns an instance of Carbon
$this->certificate->expirationDate(); // returns an instance of Carbon
Returns true if the current Date and time is between validFromDate
and expirationDate
.
$this->certificate->isValid(); // returns a boolean
You also use this method to determine if a given domain is covered by the certificate. Of course it'll keep checking if the current Date and time is between validFromDate
and expirationDate
.
$this->certificate->isValid('spatie.be'); // returns true;
$this->certificate->isValid('laravel.com'); // returns false;
Returns true if the certificate is valid and if the expirationDate
is after the given date.
$this->certificate->isValidUntil(Carbon::now()->addDays(7)); // returns a boolean
$this->certificate->isExpired(); // returns a boolean if expired
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The helper functions and tests were copied from the Laravel Framework.
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
The MIT License (MIT). Please see License File for more information.