Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down