Skip to content

Commit d575bd6

Browse files
authored
chore: upgrade pest and enable parallel testing (#116)
1 parent 183ebba commit d575bd6

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

composer.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@
2222
"simplito/elliptic-php": "^1.0"
2323
},
2424
"require-dev": {
25-
"friendsofphp/php-cs-fixer": "^2.16",
25+
"friendsofphp/php-cs-fixer": "^3.0",
2626
"graham-campbell/analyzer": "^3.0",
27-
"illuminate/support": "^7.0.0",
27+
"illuminate/support": "^7.0|^8.0",
2828
"mockery/mockery": "^1.2",
29-
"pestphp/drift": "^0.3.0",
30-
"pestphp/pest": "^0.3.8",
31-
"phpunit/phpunit": "^9.3.10",
32-
"symfony/var-dumper": "^5.0.0"
29+
"pestphp/drift": "^0.3",
30+
"pestphp/pest": "^1.0",
31+
"pestphp/pest-plugin-parallel": "^0.3.1",
32+
"phpunit/phpunit": "^9.5",
33+
"symfony/var-dumper": "^5.0"
3334
},
3435
"autoload": {
3536
"psr-4": {
@@ -55,7 +56,7 @@
5556
"vendor/bin/php-cs-fixer fix"
5657
],
5758
"test": [
58-
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
59+
"./vendor/bin/pest --parallel"
5960
]
6061
},
6162
"minimum-stability": "dev",

phpunit.xml.dist

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,4 @@
2828
<directory suffix=".php">src/</directory>
2929
</whitelist>
3030
</filter>
31-
<logging>
32-
<log type="coverage-clover" target="clover.xml"/>
33-
</logging>
3431
</phpunit>

0 commit comments

Comments
 (0)