Skip to content

Commit 28ec63a

Browse files
author
Andrew Scott
committed
Bump
1 parent 61e6b3d commit 28ec63a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.1.0",
15+
"php": ">=8.0.0",
1616
"ext-mbstring": "*",
1717
"ext-libxml": "*",
1818
"lib-libxml": ">=2.7.7",
19-
"symfony/css-selector": "^4.0 || ^5.0 || ^6.0"
19+
"symfony/css-selector": "^5.0 || ^6.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
22+
"phpunit/phpunit": "^9.0 || ^10.0"
2323
},
2424
"autoload": {
2525
"psr-4": {
@@ -33,7 +33,7 @@
3333
},
3434
"extra": {
3535
"branch-alias": {
36-
"dev-master": "2.0-dev"
36+
"dev-master": "3.0-dev"
3737
}
3838
}
3939
}

phpunit.xml.dist

Lines changed: 7 additions & 5 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" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage processUncoveredFiles="true">
4-
<include>
5-
<directory suffix=".php">src</directory>
6-
</include>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory=".phpunit.cache">
3+
<coverage>
74
<report>
85
<clover outputFile="build/logs/clover.xml"/>
96
<crap4j outputFile="build/logs/crap4j.xml"/>
@@ -19,4 +16,9 @@
1916
<logging>
2017
<junit outputFile="build/logs/junit.xml"/>
2118
</logging>
19+
<source>
20+
<include>
21+
<directory suffix=".php">src</directory>
22+
</include>
23+
</source>
2224
</phpunit>

0 commit comments

Comments
 (0)