Closed crynobone closed 3 years ago
In Laravel application, you can use .env without stubbing the configuration file (as long as application not using configuration caching).
.env
RAY_ENABLED=(true) SEND_REQUESTS_TO_RAY=(true)
In Testbench, adding the following to phpunit.xml will automatically configure Ray.
phpunit.xml
<server name="RAY_ENABLED" value="(true)"/> <server name="SEND_REQUESTS_TO_RAY" value="(true)"/>
Signed-off-by: Mior Muhammad Zaki crynobone@gmail.com
That's nice, thanks!
In Laravel application, you can use
.env
without stubbing the configuration file (as long as application not using configuration caching).In Testbench, adding the following to
phpunit.xml
will automatically configure Ray.Signed-off-by: Mior Muhammad Zaki crynobone@gmail.com