Releases: Daanra/laravel-lets-encrypt
Releases · Daanra/laravel-lets-encrypt
v0.5.3
v0.5.2
v0.5.1
v0.5.0
Adds support for Subject Alternative Names [#23] (thanks to @Muffinman).
Usage:
LetsEncrypt::certificate('mydomain.com')
->setSubjectAlternativeNames(['mydomain2.com'])
->create();
Upgrading
For this to work, publish the new migration by running:
php artisan vendor:publish --provider="Daanra\LaravelLetsEncrypt\LetsEncryptServiceProvider" --tag="lets-encrypt-0.5"
v0.4.0
v0.3.0-beta
A new fluent syntax for creating certificates has been added:
LetsEncrypt::certificate('mydomain.com')
->chain([
new SomeJob()
])
->delay(5)
->retryAfter(4)
->setTries(4)
->setRetryList([1, 5, 10])
->create(); // or ->renew()
This new syntax allows you to:
- Specify the number of times the jobs should be attempted
- Specify a delayed time interval for creating the certificate
- Specify when the jobs should be retried