We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b242bcc commit 9993c77Copy full SHA for 9993c77
.gitignore
@@ -3,6 +3,5 @@ composer.lock
3
.claude
4
5
# PHPUnit
6
-/phpunit.xml
7
.phpunit.result.cache
8
.phpunit.cache/
phpunit.xml
@@ -0,0 +1,16 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
+ bootstrap="vendor/autoload.php"
+ colors="true">
+ <testsuites>
+ <testsuite name="PHPVector">
+ <directory>tests</directory>
9
+ </testsuite>
10
+ </testsuites>
11
+ <source>
12
+ <include>
13
+ <directory>src</directory>
14
+ </include>
15
+ </source>
16
+</phpunit>
0 commit comments