Skip to content

Commit

Permalink
PHPUnit 10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
inxilpro committed Mar 12, 2024
1 parent fcc84d7 commit 9ddc73d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,6 +2,7 @@ vendor/
composer.phar
composer.lock
.phpunit.result.cache
.phpunit.cache/
.php_cs.cache
.php-cs-fixer.cache

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -23,7 +23,7 @@
},
"require-dev": {
"orchestra/testbench": "^6.24|^7.10|^8|^9|9.x-dev|10.x-dev|dev-master",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^10.5",
"php-coveralls/php-coveralls": "^2.1",
"guzzlehttp/guzzle": "~6.0|~7.0",
"symfony/css-selector": "^5.4",
Expand Down
13 changes: 7 additions & 6 deletions phpunit.xml
Expand Up @@ -3,13 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
cacheDirectory=".phpunit.cache"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Tests">
<directory>./tests</directory>
Expand All @@ -23,4 +19,9 @@
<env name="QUEUE_DRIVER" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 9ddc73d

Please sign in to comment.