Skip to content

Commit faf1154

Browse files
committed
Fix CI for Laravel 9
1 parent 1126ee1 commit faf1154

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
*.queryguard-baseline.json
66
.env
77
.DS_Store
8-
.idea/
9-
phpunit9.xml.dist
8+
.idea/

phpunit9.xml.dist

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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/9.5/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true">
6+
<testsuites>
7+
<testsuite name="QueryGuard">
8+
<directory>tests</directory>
9+
</testsuite>
10+
</testsuites>
11+
<coverage>
12+
<include>
13+
<directory>src</directory>
14+
</include>
15+
</coverage>
16+
</phpunit>

0 commit comments

Comments
 (0)