Skip to content

Commit 3480cd7

Browse files
authored
Merge pull request #65 from sourcetoad/laravel13
PHP 8.5 + Laravel 13
2 parents 08658cc + efb0b99 commit 3480cd7

3 files changed

Lines changed: 14 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [ 8.2, 8.3, 8.4 ]
12-
laravel: [ 11.0, 12.0 ]
11+
php: [8.2, 8.3, 8.4, 8.5]
12+
laravel: [11.0, 12.0, 13.0]
13+
exclude:
14+
- php: 8.2
15+
laravel: 13.0
1316
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
1417
steps:
1518
- name: Checkout code
@@ -50,7 +53,7 @@ jobs:
5053
- name: Setup PHP
5154
uses: shivammathur/setup-php@v2
5255
with:
53-
php-version: '8.2'
56+
php-version: 8.5
5457
tools: composer:v2
5558
extensions: dom, curl, libxml, mbstring, zip, pcntl, gd, soap
5659
coverage: none

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This means that the method for storage must be efficient, unlike other packages
2323

2424
### Laravel
2525

26-
You are reading the documentation for Laravel 11.x and 12.x.
26+
You are reading the documentation for Laravel 11.x, 12.x, and 13.x.
2727

2828
* 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).
2929
* 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).

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
"prefer-stable": true,
1717
"require": {
1818
"ext-json": "*",
19-
"php": "^8.2||^8.3||^8.4",
20-
"illuminate/auth": "^11.0|^12.0",
21-
"illuminate/config": "^11.0|^12.0",
22-
"illuminate/database": "^11.0|^12.0",
23-
"illuminate/support": "^11.0|^12.0",
24-
"illuminate/translation": "^11.0|^12.0"
19+
"php": "^8.2||^8.3||^8.4||^8.5",
20+
"illuminate/auth": "^11.0|^12.0|^13.0",
21+
"illuminate/config": "^11.0|^12.0|^13.0",
22+
"illuminate/database": "^11.0|^12.0|^13.0",
23+
"illuminate/support": "^11.0|^12.0|^13.0",
24+
"illuminate/translation": "^11.0|^12.0|^13.0"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "1.21",
28-
"orchestra/testbench": "^9.5|^10.0",
28+
"orchestra/testbench": "^9.5|^10.0|^11.0",
2929
"phpunit/phpunit": "^11.5"
3030
},
3131
"autoload": {

0 commit comments

Comments
 (0)