Skip to content

Commit 3c1c39a

Browse files
author
Stephan Wentz
committed
fix: Allow symfony console 7.0, remove php 8.1 support
1 parent 611ed6f commit 3c1c39a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
matrix:
1919
dependencies: ["lowest", "highest"]
2020
php-version:
21-
- "8.1"
2221
- "8.2"
22+
- "8.3"
2323

2424
steps:
2525
- name: "Checkout"

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
},
1616
"require": {
17-
"php": "^8.1",
18-
"symfony/console": "^6.0",
17+
"php": "^8.2",
18+
"symfony/console": "^6.0|^7.0",
1919
"doctrine/dbal": "^3.1"
2020
},
2121
"require-dev": {
@@ -24,7 +24,7 @@
2424
"jangregor/phpstan-prophecy": "^1.0",
2525
"phpstan/phpstan": "^1.0",
2626
"phpstan/phpstan-phpunit": "^1.3",
27-
"phpunit/phpunit": "^10.0"
27+
"phpunit/phpunit": "^10.2"
2828
},
2929
"config": {
3030
"sort-packages": true,

phpunit.xml.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
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/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" executionOrder="depends,defects" beStrictAboutOutputDuringTests="true" colors="true" cacheDirectory=".phpunit.cache" requireCoverageMetadata="true">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">src</directory>
6-
</include>
7-
</coverage>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" executionOrder="depends,defects" beStrictAboutOutputDuringTests="true" colors="true" cacheDirectory=".phpunit.cache" requireCoverageMetadata="true">
83
<testsuites>
94
<testsuite name="default">
105
<directory>tests</directory>
116
</testsuite>
127
</testsuites>
8+
<source>
9+
<include>
10+
<directory suffix=".php">src</directory>
11+
</include>
12+
</source>
1313
</phpunit>

0 commit comments

Comments
 (0)