Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit 0964445

Browse files
authored
Support for PHP 8.2 (#12)
1 parent 15403ee commit 0964445

File tree

3 files changed

+13
-17
lines changed

3 files changed

+13
-17
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.0, 7.4]
12-
laravel: [9.*, 8.*]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [9.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
14-
exclude:
15-
- laravel: 9.*
16-
php: 7.4
1714
include:
1815
- laravel: 9.*
1916
testbench: 7.*
20-
- laravel: 8.*
21-
testbench: 6.*
2217

2318
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
2419

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ https://twitter.com/pascalbaljet/status/1257926601339277312
99

1010
Laravel package to easily send events to [Google Analytics](https://analytics.google.com/)
1111

12-
## Support this package!
12+
## Sponsor this package!
1313

1414
❤️ We proudly support the community by developing Laravel packages and giving them away for free. If this package saves you time or if you're relying on it professionally, please consider [sponsoring the maintenance and development](https://github.com/sponsors/pascalbaljet). Keeping track of issues and pull requests takes time, but we're happy to help!
1515

@@ -25,8 +25,8 @@ It's the *magic* of Inertia.js with the *simplicity* of Blade. [Splade](https://
2525
* Full access to the [underlying library](https://github.com/theiconic/php-ga-measurement-protocol).
2626
* API calls to GA are queued.
2727
* Easy to configure.
28-
* Compatible with Laravel 8.0 and 9.0.
29-
* PHP 7.4 or higher required.
28+
* Compatible with Laravel 9.0.
29+
* PHP 8.0 or higher required.
3030

3131
## Installation
3232

composer.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.4 || ^8.0 || ^8.1",
25-
"illuminate/bus": "^8.67 || ^9.0",
26-
"illuminate/queue": "^8.67 || ^9.0",
27-
"illuminate/http": "^8.67 || ^9.0",
28-
"illuminate/validation": "^8.67 || ^9.0",
24+
"php": "^8.0 || ^8.1 || ^8.2",
25+
"illuminate/bus": "^9.0",
26+
"illuminate/queue": "^9.0",
27+
"illuminate/http": "^9.0",
28+
"illuminate/validation": "^9.0",
2929
"theiconic/php-ga-measurement-protocol": "^2.7"
3030
},
3131
"require-dev": {
32-
"orchestra/testbench": "^6.23 || ^7.0",
3332
"mockery/mockery": "^1.3.3",
33+
"nesbot/carbon": "^2.63",
34+
"orchestra/testbench": "^7.0",
3435
"phpunit/phpunit": "^9.4"
3536
},
3637
"autoload": {
@@ -59,4 +60,4 @@
5960
]
6061
}
6162
}
62-
}
63+
}

0 commit comments

Comments
 (0)