Skip to content

Commit c861f6a

Browse files
Update changelog and phpunit.xml
1 parent b9d3beb commit c861f6a

2 files changed

Lines changed: 22 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ Happy summer time ⛱️
233233

234234
Initial release
235235

236-
[Unreleased]: https://github.com/i-doit/api-client-php/compare/1.0...HEAD
237-
[1.0]: https://github.com/i-doit/api-client-php/compare/0.10...1.0
236+
[Unreleased]: https://github.com/i-doit/api-client-php/compare/1.0.0...HEAD
237+
[1.0.0]: https://github.com/i-doit/api-client-php/compare/0.10...1.0.0
238238
[0.10]: https://github.com/i-doit/api-client-php/compare/0.9...0.10
239239
[0.9]: https://github.com/i-doit/api-client-php/compare/0.8...0.9
240240
[0.8]: https://github.com/i-doit/api-client-php/compare/0.7...0.8

phpunit.xml

Lines changed: 20 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,21 @@
1-
<phpunit
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.0/phpunit.xsd"
4-
bootstrap="./vendor/autoload.php"
5-
cacheTokens="false"
6-
colors="true"
7-
timeoutForSmallTests="10"
8-
timeoutForMediumTests="30"
9-
timeoutForLargeTests="120"
10-
verbose="true">
11-
<testsuites>
12-
<testsuite name="Unit Tests">
13-
<directory>./tests/Idoit/APIClient/</directory>
14-
</testsuite>
15-
</testsuites>
16-
<logging>
17-
<log type="coverage-text" target="php://stdout"/>
18-
</logging>
19-
<filter>
20-
<whitelist>
21-
<directory suffix=".php">./src/</directory>
22-
</whitelist>
23-
</filter>
24-
<extensions>
25-
<extension class="Idoit\APIClient\Extension\PrintMetaData"/>
26-
<extension class="Idoit\APIClient\Extension\PrintStatistics"/>
27-
</extensions>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" timeoutForSmallTests="10" timeoutForMediumTests="30" timeoutForLargeTests="120" verbose="true">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">./src/</directory>
6+
</include>
7+
<report>
8+
<text outputFile="php://stdout"/>
9+
</report>
10+
</coverage>
11+
<testsuites>
12+
<testsuite name="Unit Tests">
13+
<directory>./tests/Idoit/APIClient/</directory>
14+
</testsuite>
15+
</testsuites>
16+
<logging/>
17+
<extensions>
18+
<extension class="Idoit\APIClient\Extension\PrintMetaData"/>
19+
<extension class="Idoit\APIClient\Extension\PrintStatistics"/>
20+
</extensions>
2821
</phpunit>

0 commit comments

Comments
 (0)