v0.3.0-beta
Pre-release
Pre-release
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