bootstrap-agent.php 457 B

12345678910
  1. <?php
  2. // Allows an isolated dependency directory; never loads the project's .env or application providers.
  3. $autoload = getenv('AGENT_TEST_AUTOLOAD') ?: dirname(__DIR__) . '/vendor/autoload.php';
  4. if (!is_file($autoload)) {
  5. throw new RuntimeException('Install test dependencies or set AGENT_TEST_AUTOLOAD to vendor/autoload.php');
  6. }
  7. $loader = require $autoload;
  8. $loader->setPsr4('App\\', dirname(__DIR__) . '/app');
  9. $loader->setPsr4('Tests\\', __DIR__);