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

Support for PHP 8.2 #12

Merged
merged 1 commit into from
Dec 10, 2022
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: 2 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.0, 7.4]
laravel: [9.*, 8.*]
php: [8.2, 8.1, 8.0]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: 7.4
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ https://twitter.com/pascalbaljet/status/1257926601339277312

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

## Support this package!
## Sponsor this package!

❤️ 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!

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

## Installation

Expand Down
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"illuminate/bus": "^8.67 || ^9.0",
"illuminate/queue": "^8.67 || ^9.0",
"illuminate/http": "^8.67 || ^9.0",
"illuminate/validation": "^8.67 || ^9.0",
"php": "^8.0 || ^8.1 || ^8.2",
"illuminate/bus": "^9.0",
"illuminate/queue": "^9.0",
"illuminate/http": "^9.0",
"illuminate/validation": "^9.0",
"theiconic/php-ga-measurement-protocol": "^2.7"
},
"require-dev": {
"orchestra/testbench": "^6.23 || ^7.0",
"mockery/mockery": "^1.3.3",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
Expand Down Expand Up @@ -59,4 +60,4 @@
]
}
}
}
}