We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b260c34 commit e0aa4e6Copy full SHA for e0aa4e6
2 files changed
phpunit.xml
@@ -1,4 +1,4 @@
1
-<phpunit bootstrap="vendor/autoload.php">
+<phpunit bootstrap="tests/bootstrap.php">
2
<testsuites>
3
<testsuite name="all">
4
<directory>tests/</directory>
tests/bootstrap.php
@@ -0,0 +1,6 @@
+<?php
+define('ROOT_DIR', dirname(__DIR__));
+
+require ROOT_DIR . '/vendor/autoload.php';
5
6
+\Dotenv\Dotenv::createUnsafeImmutable(ROOT_DIR)->safeLoad();
0 commit comments