Skip to content

Commit 86bd912

Browse files
authored
Merge pull request #60 from markwalet/fix-phpunit
2 parents bbe3c65 + 7d486ae commit 86bd912

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
strategy:
17-
fail-fast: true
1817
matrix:
1918
php: [ 8.1, 8.2, 8.3, 8.4 ]
20-
illuminate: [ ^10.0, ^11.0, ^12.0 ]
19+
illuminate: [ ^10.0, ^11.44.2, ^12.0 ]
2120
stability: [ prefer-lowest, prefer-stable ]
2221
include:
2322
- illuminate: ^10.0
2423
testbench: 8.*
25-
- illuminate: ^11.0
26-
testbench: 9.*
24+
- illuminate: ^11.44.2
25+
testbench: ^9.13.0
2726
- illuminate: ^12.0
2827
testbench: 10.*
2928
exclude:
3029
- php: 8.1
31-
illuminate: ^11.0
30+
illuminate: ^11.44.2
3231
- php: 8.1
3332
illuminate: ^12.0
3433

@@ -47,8 +46,7 @@ jobs:
4746

4847
- name: Install dependencies
4948
run: |
50-
composer require "laravel/framework:${{ matrix.illuminate }}" --no-interaction --no-update
51-
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
49+
composer require "laravel/framework:${{ matrix.illuminate }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
5250
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5351
5452
- name: Execute tests

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.11.0...master)
44

5+
### Changed
6+
- Increase minimum Laravel version to 11.44.2.
7+
58
## [v1.11.0 (2025-02-03)](https://github.com/markwalet/laravel-changelog/compare/v1.10.0...v1.11.0)
69

710
### Added

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
],
1212
"require": {
1313
"php": "8.*",
14-
"laravel/framework": "^10.0|^11.0|^12.0",
14+
"laravel/framework": "^10.0|^11.44.2|^12.0",
1515
"markwalet/laravel-git-state": "~1.0",
1616
"ext-simplexml": "*",
1717
"ext-dom": "*"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "^10.5|^11.0",
2121
"mockery/mockery": "~1.4",
22-
"orchestra/testbench": "8.*|9.*|10.*"
22+
"orchestra/testbench": "8.*|^9.13.0|10.*"
2323
},
2424
"autoload": {
2525
"psr-4": {

0 commit comments

Comments
 (0)