Skip to content

Commit

Permalink
Allow PHPUnit 11
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick committed Apr 18, 2024
1 parent ce55502 commit e0844ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan-mockery": "^1.0",
"phpunit/phpunit": "^9.3.3 || ^10.0",
"phpunit/phpunit": "^9.3.3 || ^10.0 || ^11.0",
"zing/coding-standard": "^6.4 || ^7.0"
},
"autoload": {
Expand Down
9 changes: 8 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +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.1/phpunit.xsd" beStrictAboutOutputDuringTests="true" bootstrap="vendor/autoload.php" colors="true" failOnRisky="true" failOnWarning="true" cacheDirectory=".phpunit.cache">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
colors="true"
failOnRisky="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache">
<coverage/>
<testsuites>
<testsuite name="Laravel Sms Test Suite">
Expand Down

0 comments on commit e0844ab

Please sign in to comment.