Skip to content

Commit 87391ec

Browse files
Fix: failing tests on laravel 8
expectsOutputToContain was released in laravel 9.2
1 parent 95e2511 commit 87391ec

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.3, 8.2, 8.1, 8.0]
17-
laravel: [11.*, 10.*, 9.*, 8.*]
17+
laravel: [11.*, 10.*, 9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 11.*
@@ -23,8 +23,6 @@ jobs:
2323
testbench: 8.*
2424
- laravel: 9.*
2525
testbench: 7.*
26-
- laravel: 8.*
27-
testbench: ^6.23
2826
exclude:
2927
- laravel: 11.*
3028
php: 8.0

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"require": {
2121
"php": "^8.0",
2222
"esign/laravel-underscore-translatable": "^1.1",
23-
"illuminate/cache": "^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
25-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
26-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
27-
"illuminate/translation": "^8.0|^9.0|^10.0|^11.0"
23+
"illuminate/cache": "^9.2|^10.0|^11.0",
24+
"illuminate/console": "^9.2|^10.0|^11.0",
25+
"illuminate/database": "^9.2|^10.0|^11.0",
26+
"illuminate/support": "^9.2|^10.0|^11.0",
27+
"illuminate/translation": "^9.2|^10.0|^11.0"
2828
},
2929
"require-dev": {
3030
"friendsofphp/php-cs-fixer": "^3.5",
31-
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
31+
"orchestra/testbench": "^7.0|^8.0|^9.0",
3232
"phpunit/phpunit": "^9.5|^10.0"
3333
},
3434
"autoload": {

0 commit comments

Comments
 (0)