How do I pass Safari options for PHP Codeception?

How can I pass Safari options while using PHP Codeception?

Hi Toby,

Please refer to the following code below:

class_name: AcceptanceTester
modules:
    enabled:
        - WebDriver:
    config:
        WebDriver:
          host: 'LT_USERNAME:LT_ACCESS_KEY@hub.lambdatest.com'
          port: 80
          url: 'https://lambdatest.github.io/'
          browser: safari
          capabilities: 
                        "browserName": "Safari",
                        "browserVersion": "15.0",
                        "LT:Options": {
                                "platformName": "MacOS Monterey",
                                "project": "Untitled",
                                "selenium_version": "4.0.0"
                        }