Skip to content

Commit

Permalink
Merge pull request #18 from worksome/feature/pest-2.x
Browse files Browse the repository at this point in the history
feat: update to Pest 2.x
  • Loading branch information
lukeraymonddowning authored Mar 24, 2023
2 parents 13e7153 + 78d0a22 commit c6cf0c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.idea
.php_cs
.php_cs.cache
.phpunit.result.cache
.phpunit.cache
build
composer.lock
coverage
Expand Down
12 changes: 5 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,16 @@
],
"require": {
"php": "^8.2",
"spatie/laravel-package-tools": "^1.14.1",
"spatie/laravel-package-tools": "^1.14.2",
"illuminate/contracts": "^10.0"
},
"require-dev": {
"nunomaduro/collision": "^6.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.4.0",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^1.22.3",
"pestphp/pest-plugin-laravel": "^1.4",
"pestphp/pest-plugin-parallel": "^1.2",
"worksome/coding-style": "^2.3.2",
"worksome/pest-plugin-silence": "^0.1.2"
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"worksome/coding-style": "^2.5"
},
"autoload": {
"psr-4": {
Expand Down
14 changes: 1 addition & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,9 @@
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
verbose="true"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="VendorName Test Suite">
Expand Down

0 comments on commit c6cf0c7

Please sign in to comment.