Skip to content

Commit f5cfd0f

Browse files
committed
chore: update development dependencies and adjust PHPUnit configuration
1 parent 450dc5b commit f5cfd0f

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ jobs:
5050
5151
- name: Install dependencies
5252
run: |
53-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
53+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
54+
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
5455
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5556
5657
- name: List Installed Dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"spatie/laravel-package-tools": "^1.16"
2424
},
2525
"require-dev": {
26+
"larastan/larastan": "^3.0",
2627
"laravel/pint": "^1.14",
2728
"nunomaduro/collision": "^8.8",
28-
"larastan/larastan": "^3.0",
2929
"orchestra/testbench": "^10.0.0||^9.0.0",
3030
"pestphp/pest": "^4.0",
3131
"pestphp/pest-plugin-arch": "^4.0",

phpunit.xml.dist

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
bootstrap="vendor/autoload.php"
77
colors="true"
88
processIsolation="false"
9+
stopOnError="false"
910
stopOnFailure="false"
1011
executionOrder="random"
11-
failOnWarning="true"
12+
failOnWarning="false"
1213
failOnRisky="true"
1314
failOnEmptyTestSuite="true"
1415
beStrictAboutOutputDuringTests="true"

0 commit comments

Comments
 (0)