Skip to content

Commit 864f754

Browse files
authored
Merge pull request #10 from freshbitsweb/laravel-13-compatibility-update-17641142040799085475
2 parents 888befa + ca9f1a9 commit 864f754

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ 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']
1616
stability: [prefer-lowest, prefer-stable]
1717

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

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
@@ -38,4 +38,4 @@ jobs:
3838
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
3939
4040
- name: Execute tests
41-
run: vendor/bin/phpunit
41+
run: vendor/bin/phpunit --no-coverage

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.php_cs
33
.php_cs.cache
44
.phpunit.result.cache
5+
.phpunit.cache
56
build
67
composer.lock
78
coverage

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": {

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
processIsolation="false"
1313
stopOnFailure="false"
1414
executionOrder="random"
15-
failOnWarning="true"
15+
failOnWarning="false"
1616
failOnRisky="true"
1717
failOnEmptyTestSuite="true"
1818
beStrictAboutOutputDuringTests="true"

0 commit comments

Comments
 (0)