Skip to content

Commit

Permalink
Removed support for PHP 8.1 and Symfony 5
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Mar 23, 2024
1 parent b366756 commit 634eaf7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"dragon-code/support": "^6.10",
"symfony/console": "^5.3 || ^6.0 || ^7.0"
"symfony/console": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^5.3 || ^6.0 || ^7.0"
"phpunit/phpunit": "^11.0",
"symfony/var-dumper": "^6.0 || ^7.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
Expand Down
5 changes: 2 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
colors="true"
failOnRisky="true"
failOnWarning="true"
>
<testsuites>
<testsuite name="default">
Expand All @@ -16,7 +15,7 @@
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
<directory>src</directory>
</include>
</source>
</phpunit>

0 comments on commit 634eaf7

Please sign in to comment.