diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61db9a0..bc30888 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,21 +14,20 @@ jobs: runs-on: ubuntu-latest strategy: - fail-fast: true matrix: php: [ 8.1, 8.2, 8.3, 8.4 ] - illuminate: [ ^10.0, ^11.0, ^12.0 ] + illuminate: [ ^10.0, ^11.44.2, ^12.0 ] stability: [ prefer-lowest, prefer-stable ] include: - illuminate: ^10.0 testbench: 8.* - - illuminate: ^11.0 - testbench: 9.* + - illuminate: ^11.44.2 + testbench: ^9.13.0 - illuminate: ^12.0 testbench: 10.* exclude: - php: 8.1 - illuminate: ^11.0 + illuminate: ^11.44.2 - php: 8.1 illuminate: ^12.0 @@ -47,8 +46,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.illuminate }}" --no-interaction --no-update - composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.illuminate }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Execute tests diff --git a/CHANGELOG.md b/CHANGELOG.md index fe2b000..d1531b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## [Unreleased](https://github.com/markwalet/laravel-changelog/compare/v1.11.0...master) +### Changed +- Increase minimum Laravel version to 11.44.2. + ## [v1.11.0 (2025-02-03)](https://github.com/markwalet/laravel-changelog/compare/v1.10.0...v1.11.0) ### Added diff --git a/composer.json b/composer.json index 94a0f84..7e55f26 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "require": { "php": "8.*", - "laravel/framework": "^10.0|^11.0|^12.0", + "laravel/framework": "^10.0|^11.44.2|^12.0", "markwalet/laravel-git-state": "~1.0", "ext-simplexml": "*", "ext-dom": "*" @@ -19,7 +19,7 @@ "require-dev": { "phpunit/phpunit": "^10.5|^11.0", "mockery/mockery": "~1.4", - "orchestra/testbench": "8.*|9.*|10.*" + "orchestra/testbench": "8.*|^9.13.0|10.*" }, "autoload": { "psr-4": {