Skip to content

Commit 1dac910

Browse files
author
s3b4stian
committed
refactor done
1 parent 9ed1060 commit 1dac910

7 files changed

Lines changed: 157 additions & 109 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ vendor/
66
.phan/
77
.php-cs-fixer.cache
88
.phpunit.result.cache
9-
phpunit.local.xml
9+
phpunit.local.xml
10+
.phpunit.cache

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
"infection/infection": ">=0.26",
2727
"phpstan/phpstan": ">=1.8",
2828
"phpunit/phpunit": ">=9.0",
29-
"linna/framework": "^0.27.0",
29+
"linna/framework": "dev-data-mapper",
3030
"linna/db-dumps": "dev-master",
31-
"linna/auth-mapper-test-trait": "^0.2"
31+
"linna/auth-mapper-test-trait": "dev-b0.3"
3232
},
3333
"autoload": {
3434
"psr-4": {

phpunit.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" bootstrap="vendor/autoload.php" verbose="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" colors="true" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
33
<coverage>
4-
<include>
5-
<directory suffix=".php">src</directory>
6-
</include>
74
<report>
85
<clover outputFile="clover.xml"/>
96
</report>
@@ -19,4 +16,9 @@
1916
<var name="pdo_pgsql_user" value="postgres"/>
2017
<var name="pdo_pgsql_password" value="password"/>
2118
</php>
19+
<source>
20+
<include>
21+
<directory suffix=".php">src</directory>
22+
</include>
23+
</source>
2224
</phpunit>

0 commit comments

Comments
 (0)