Dotenv-connector and config vars with a dot in the variable name

Hey everyone :slight_smile: Is it possible to use config vars with a dot in the variable name with helhum/dotenv-connector?

I need to set [‘SYS’][‘features’][‘security.backend.enforceReferrer’] to false for a testing system but using the default notation TYPO3__<section>[__<sub-section>]__property fails.

I tried some variants to no avail:

  • TYPO3__SYS__features__security__backend__enforceReferrer (no effect)
  • TYPO3__SYS__features__security.backend.enforceReferrer (throws error)
  • TYPO3__SYS__features__security_backend_enforceReferrer (no effect)
  • TYPO3__SYS__features__security\.backend\.enforceReferrer (throws error)