Skip to content

Commit 868947d

Browse files
Merge pull request #19 from TheDragonCode/3.x
Removed support for PHP 8.1 and Symfony 5
2 parents b366756 + 400b687 commit 868947d

3 files changed

Lines changed: 8 additions & 12 deletions

File tree

.github/workflows/phpunit.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.1", "8.2", "8.3" ]
13-
symfony: [ "5.3", "6.0", "7.0" ]
14-
exclude:
15-
- php: "8.1"
16-
symfony: "7.0"
12+
php: [ "8.2", "8.3" ]
13+
symfony: [ "6.0", "7.0" ]
1714

1815
name: PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} ${{ matrix.prefer }}
1916

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
}
4242
],
4343
"require": {
44-
"php": "^8.1",
44+
"php": "^8.2",
4545
"dragon-code/support": "^6.10",
46-
"symfony/console": "^5.3 || ^6.0 || ^7.0"
46+
"symfony/console": "^6.0 || ^7.0"
4747
},
4848
"require-dev": {
49-
"phpunit/phpunit": "^10.0",
50-
"symfony/var-dumper": "^5.3 || ^6.0 || ^7.0"
49+
"phpunit/phpunit": "^11.0",
50+
"symfony/var-dumper": "^6.0 || ^7.0"
5151
},
5252
"minimum-stability": "stable",
5353
"prefer-stable": true,

phpunit.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
bootstrap="vendor/autoload.php"
66
cacheDirectory=".phpunit.cache"
77
executionOrder="depends,defects"
88
colors="true"
99
failOnRisky="true"
10-
failOnWarning="true"
1110
>
1211
<testsuites>
1312
<testsuite name="default">
@@ -16,7 +15,7 @@
1615
</testsuites>
1716
<source>
1817
<include>
19-
<directory suffix=".php">src</directory>
18+
<directory>src</directory>
2019
</include>
2120
</source>
2221
</phpunit>

0 commit comments

Comments
 (0)