diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfb6c58..5f65788 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,12 +14,12 @@ jobs: call-laravel: uses: ./.github/workflows/laravel.yml with: - php-versions: '8.1,8.2,8.3,8.4' + php-versions: '8.2,8.3,8.4,8.5' call-lumen: uses: ./.github/workflows/lumen.yml with: - php-versions: '8.1,8.2,8.3,8.4,8.5' + php-versions: '8.2,8.3,8.4,8.5' call-slim: uses: ./.github/workflows/slim.yml with: - php-versions: '8.1,8.2,8.3,8.4,8.5' + php-versions: '8.2,8.3,8.4,8.5' diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 731fdd5..0990aff 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -18,17 +18,8 @@ jobs: matrix: operating-system: [ ubuntu-latest ] php: ${{ fromJson(format('[{0}]', inputs.php-versions)) }} - laravel: [ '10.0', '11.0', '12.0' ] + laravel: [ '12.0', '13.0' ] dependencies: [ 'lowest', ' highest' ] - exclude: - - php: '8.1' - laravel: '11.0' - - php: '8.1' - laravel: '12.0' - - laravel: '11.0' - dependencies: 'lowest' - - laravel: '12.0' - dependencies: 'lowest' name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies diff --git a/.github/workflows/security-checks.yml b/.github/workflows/security-checks.yml index f58f295..47f8bb5 100644 --- a/.github/workflows/security-checks.yml +++ b/.github/workflows/security-checks.yml @@ -15,7 +15,7 @@ jobs: fail-fast: true matrix: operating-system: [ ubuntu-latest ] - php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] + php: [ '8.2', '8.3', '8.4', '8.5' ] dependencies: [ 'highest' ] name: PHP ${{ matrix.php }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies diff --git a/composer.json b/composer.json index 5a6b54d..98dc78b 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,8 @@ } }, "require": { - "php": ">=8.1", + "php": ">=8.2", + "laravel/laravel": "^12.12 || ^13.0", "psr/log": "^1.1 || ^2.0 || ^3.0", "psr/simple-cache": "^1.0 || ^2.0 || ^3.0", "radebatz/openapi-extras": "^3.0",