Hey there, I have a proto definition with this option: ```proto option php_namespace = "Trivago\\Message\\Booking"; ``` This is my wire config: ```kts wire { protoLibrary = true proto { permitPackageCycles(true) } } ``` When the gradle plugin puts this definition into the jar file, the string escape sequence is altered and becomes invalid: ```proto option php_namespace = "Trivago\Message\Booking"; ```