We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de7173 commit 10d8030Copy full SHA for 10d8030
phpunit.xml.dist
@@ -1,5 +1,5 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
-<phpunit colors="true" bootstrap="vendor/autoload.php">
+<phpunit colors="true" bootstrap="tests/bootstrap.php">
3
<testsuites>
4
<testsuite name="Curl Client Test Suite">
5
<directory>tests/</directory>
tests/bootstrap.php
@@ -0,0 +1,10 @@
+<?php
+
+$loader = require __DIR__ . '/../vendor/autoload.php';
+// Temporary fix for Puli
6
+$loader->addClassMap(
7
+ [
8
+ 'Puli\\GeneratedPuliFactory' => __DIR__ . '/../.puli/GeneratedPuliFactory.php'
9
+ ]
10
+);
0 commit comments