Skip to content

Commit

Permalink
Added Laravel 10 and PHP 8.1 Support (#626)
Browse files Browse the repository at this point in the history
* Added support to Laravel 10, PHP 8.1 and PHPUnit 10

* Revert "Added support to Laravel 10, PHP 8.1 and PHPUnit 10"

This reverts commit 9c740a9.

* Added support to Laravel 10, PHP 8.1 and PHPUnit 10

* Removed processUncoveredFiles property

* Requires var-dumper 4.2.12

* Requires symfony 4.2.12

* Requires symfony 4.3.8

* Fix console

* support sebastian/diff v5

---------

Co-authored-by: Patrick Hesselberg <patrick.hesselberg@hobbii.dk>
  • Loading branch information
rubensrocha and Patrick Hesselberg authored Mar 18, 2023
1 parent e62d07f commit 74d64f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"php": "^7.4 || ^8.0 || ^8.1",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
Expand All @@ -30,24 +30,24 @@
"php-parallel-lint/php-parallel-lint": "^1.3",
"psr/container": "^1.0|^2.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"sebastian/diff": "^4.0",
"sebastian/diff": "^4.0|^5.0",
"slevomat/coding-standard": "^7.0.8|^8.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/cache": "^4.4|^5.0|^6.0",
"symfony/console": "^4.2|^5.0|^6.0",
"symfony/finder": "^4.2|^5.0|^6.0",
"symfony/http-client": "^4.3|^5.0|^6.0",
"symfony/console": "^4.2.12|^5.0|^6.0",
"symfony/finder": "^4.2.12|^5.0|^6.0",
"symfony/http-client": "^4.3.8|^5.0|^6.0",
"symfony/process": "^5.4|^6.0"
},
"require-dev": {
"ergebnis/phpstan-rules": "^0.15.0",
"illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0",
"illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.0|^9.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"rector/rector": "0.11.56",
"symfony/var-dumper": "^4.2|^5.0|^6.0",
"symfony/var-dumper": "^4.2.12|^5.0|^6.0",
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
stopOnFailure="false"
verbose="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
Expand Down

0 comments on commit 74d64f2

Please sign in to comment.