Skip to content

Commit a05cd2c

Browse files
Update Laravel 13 compatibility, README, and CHANGELOG
- Added Laravel 13 support to composer.json. - Updated GitHub Actions to include PHP 8.3, 8.4, and 8.5. - Updated README.md with Laravel 13.x. - Added version 3.0.0 entry to CHANGELOG.md. Co-authored-by: gauravmak <11887260+gauravmak@users.noreply.github.com>
1 parent 888befa commit a05cd2c

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
php: [7.4, 8.0, '8.2']
15+
php: ['7.4', '8.0', '8.2', '8.3', '8.4', '8.5']
1616
stability: [prefer-lowest, prefer-stable]
1717

1818
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `:package_name` will be documented in this file.
44

5+
## 3.0.0 - 2026-03-21
6+
- Support for Laravel 13
7+
58
## 2.0.0 - 2025-02-26
69
- Support for Laravel 12
710

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This package allows you to post events to Google Analytics 4 from your Laravel b
1313
- Laravel 10.x
1414
- Laravel 11.x
1515
- Laravel 12.x
16+
- Laravel 13.x
1617

1718
## Installation
1819
1) Install the package by running this command in your terminal/cmd:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"require": {
55
"php": "^7.4|^8.0",
66
"guzzlehttp/guzzle": "^6.0|^7.0",
7-
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
8-
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
7+
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
8+
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
99
"spatie/laravel-package-tools": "^1.5"
1010
},
1111
"require-dev": {

0 commit comments

Comments
 (0)