Skip to content

Commit 8383bd6

Browse files
authored
Merge pull request #8 from worksome/feature/pest-2.x
feat: update to Pest 2.x
2 parents e991273 + f383780 commit 8383bd6

3 files changed

Lines changed: 4 additions & 17 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.idea
22
.php_cs
33
.php_cs.cache
4-
.phpunit.result.cache
4+
.phpunit.cache
55
build
66
composer.lock
77
coverage

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
"symfony/polyfill-mbstring": "^1.27"
1616
},
1717
"require-dev": {
18-
"pestphp/pest": "^1.22.3",
19-
"pestphp/pest-plugin-parallel": "^1.2",
20-
"worksome/coding-style": "^2.3"
18+
"pestphp/pest": "^2.0",
19+
"worksome/coding-style": "^2.5"
2120
},
2221
"scripts": {
2322
"lint": "vendor/bin/ecs --fix --ansi",

phpunit.xml.dist

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,9 @@
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
75
bootstrap="vendor/autoload.php"
86
colors="true"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
processIsolation="false"
13-
stopOnFailure="false"
14-
executionOrder="random"
15-
failOnWarning="true"
16-
failOnRisky="true"
17-
failOnEmptyTestSuite="true"
18-
beStrictAboutOutputDuringTests="true"
19-
verbose="true"
7+
cacheDirectory=".phpunit.cache"
208
>
219
<testsuites>
2210
<testsuite name="Worksome Test Suite">

0 commit comments

Comments
 (0)