Skip to content

Commit fc9077d

Browse files
author
farhadzand
committed
remove mongodb driver
1 parent 99ca5fa commit fc9077d

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
/coverage
55
/.phpunit.result.cache
66
/.phpunit.cache
7-
/phpunit.xml
87
.DS_Store
98
Thumbs.db
109
*.log

phpunit.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
processIsolation="false"
7+
stopOnFailure="false"
8+
executionOrder="random"
9+
failOnWarning="true"
10+
failOnRisky="true"
11+
failOnEmptyTestSuite="true"
12+
beStrictAboutOutputDuringTests="true"
13+
>
14+
<testsuites>
15+
<testsuite name="Unit">
16+
<directory>tests/Unit</directory>
17+
</testsuite>
18+
<testsuite name="Feature">
19+
<directory>tests/Feature</directory>
20+
</testsuite>
21+
</testsuites>
22+
<coverage>
23+
<report>
24+
<html outputDirectory="build/coverage"/>
25+
<text outputFile="build/coverage.txt"/>
26+
<clover outputFile="build/logs/clover.xml"/>
27+
</report>
28+
</coverage>
29+
<source>
30+
<include>
31+
<directory suffix=".php">src</directory>
32+
</include>
33+
</source>
34+
</phpunit>

0 commit comments

Comments
 (0)