Update pest

This commit is contained in:
2023-04-20 15:39:50 +03:00
parent 2ee29e57fa
commit 557e906acf
3 changed files with 1167 additions and 687 deletions

View File

@@ -33,7 +33,7 @@
"ergebnis/composer-normalize": "^2.23",
"laravel-zero/framework": "^10.0",
"mockery/mockery": "^1.4.4",
"pestphp/pest": "^1.21.1",
"pestphp/pest": "^2",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",

1827
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,13 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
@@ -16,9 +18,10 @@
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<coverage/>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
</source>
</phpunit>