diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b6c218..aa311d6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,8 +8,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2, 8.3, 8.4 ] - laravel: [ 11.0, 12.0 ] + php: [8.2, 8.3, 8.4, 8.5] + laravel: [11.0, 12.0, 13.0] + exclude: + - php: 8.2 + laravel: 13.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code @@ -50,7 +53,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.2' + php-version: 8.5 tools: composer:v2 extensions: dom, curl, libxml, mbstring, zip, pcntl, gd, soap coverage: none diff --git a/README.md b/README.md index 7d0186c..bffde88 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ This means that the method for storage must be efficient, unlike other packages ### Laravel -You are reading the documentation for Laravel 11.x and 12.x. +You are reading the documentation for Laravel 11.x, 12.x, and 13.x. * If you're using Laravel 9 or 10 please see the docs for [4.x](https://github.com/sourcetoad/Logger/releases/tag/v4.2.0). * If you're using Laravel 6, 7 or 8 please see the docs for [3.x](https://github.com/sourcetoad/Logger/releases/tag/v3.0.1). diff --git a/composer.json b/composer.json index eb6c722..7a84c4e 100644 --- a/composer.json +++ b/composer.json @@ -16,16 +16,16 @@ "prefer-stable": true, "require": { "ext-json": "*", - "php": "^8.2||^8.3||^8.4", - "illuminate/auth": "^11.0|^12.0", - "illuminate/config": "^11.0|^12.0", - "illuminate/database": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0", - "illuminate/translation": "^11.0|^12.0" + "php": "^8.2||^8.3||^8.4||^8.5", + "illuminate/auth": "^11.0|^12.0|^13.0", + "illuminate/config": "^11.0|^12.0|^13.0", + "illuminate/database": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/translation": "^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "1.21", - "orchestra/testbench": "^9.5|^10.0", + "orchestra/testbench": "^9.5|^10.0|^11.0", "phpunit/phpunit": "^11.5" }, "autoload": {