Skip to content

v0.3.0-beta

Pre-release
Pre-release
Compare
Choose a tag to compare
@Daanra Daanra released this 29 Oct 20:12
· 31 commits to master since this release
e8f58d5

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