Skip to content

Commit 3dad86e

Browse files
committed
Update dependencies.
1 parent b6d3820 commit 3dad86e

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
/.idea/
2-
/.phpunit.result.cache
2+
/.phpunit.cache/
33
/bin/
44
/composer.lock
5-
/custom.task.properties
6-
/custom.type.properties
75
/phpunit.xml
86
/test/coverage.xml
97
/test/report/

build.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
<arg value="--ansi"/>
77
<arg value="update"/>
88
</exec>
9-
<exec executable="npm" checkreturn="true" passthru="true">
10-
<arg value="--ansi"/>
11-
<arg value="update"/>
12-
</exec>
139

1410
<phing phingfile="build.xml" target="outdated" haltonfailure="true"/>
1511
</target>

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"minimum-stability": "dev",
1616
"prefer-stable": true,
1717
"require-dev": {
18-
"phing/phing": "^3.0.0-RC4",
19-
"phpunit/phpunit": "^9.6.3"
18+
"phing/phing": "^3.0.0-RC5",
19+
"phpunit/phpunit": "^10.1.3"
2020
},
2121
"autoload": {
2222
"psr-4": {

phpunit.xml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="test/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage processUncoveredFiles="true">
4-
<include>
5-
<directory suffix=".php">src</directory>
6-
</include>
7-
<exclude>
8-
<directory suffix=".php">vendor/setbased</directory>
9-
</exclude>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="test/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache">
3+
<coverage>
104
<report>
115
<clover outputFile="test/coverage.xml"/>
126
<html outputDirectory="test/report"/>
@@ -18,4 +12,12 @@
1812
</testsuite>
1913
</testsuites>
2014
<logging/>
15+
<source>
16+
<include>
17+
<directory suffix=".php">src</directory>
18+
</include>
19+
<exclude>
20+
<directory suffix=".php">vendor/setbased</directory>
21+
</exclude>
22+
</source>
2123
</phpunit>

0 commit comments

Comments
 (0)