Skip to content

Commit

Permalink
Migrated PHPUnit config to v10
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Jul 24, 2024
1 parent 068fb11 commit 782f8ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ vendor/
composer.lock
phpunit.xml
/.phpunit.result.cache
/.phpunit.cache/test-results
16 changes: 6 additions & 10 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php"
backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true"
convertErrorsToExceptions="true" convertNoticesToExceptions="true"
convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix="Test.php">src/</directory>
</include>
</coverage>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="Vanilo Stripe Test Suite">
<directory>tests</directory>
Expand All @@ -17,4 +8,9 @@
<php>
<env name="APP_DEBUG" value="true"/>
</php>
<source>
<include>
<directory suffix="Test.php">src/</directory>
</include>
</source>
</phpunit>

0 comments on commit 782f8ed

Please sign in to comment.