Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
php-version: [8.3, 8.4, 8.5]
laravel-version: ["11.*", "12.*", "13.*"]
laravel-version: ["12.*", "13.*"]
include:
- php-version: 8.5
laravel-version: "13.*"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ A Laravel package to identify the visitor's browser, operating system, and devic

### Changes from the original

- PHP 8.3+ and Laravel 11–13 support (dropped older versions)
- PHP 8.3+ and Laravel 12–13 support (dropped older versions)
- Removed `ua-parser/ua-parser` and `mobiledetect/mobiledetect` — detection is now powered by fewer, better-maintained libraries

## Requirements

- PHP 8.3+
- Laravel 11, 12, or 13 (or standalone without Laravel)
- Laravel 12 or 13 (or standalone without Laravel)

## Installation

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
],
"require": {
"php": "^8.3",
"jaybizzle/crawler-detect": "^1.2",
"matomo/device-detector": "^6.0"
"jaybizzle/crawler-detect": "^1.4",
"matomo/device-detector": "^6.5"
},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0 || ^12.0 || ^13.0",
"orchestra/testbench": "^10.0 || ^11.0",
"phpstan/phpstan": "^2.2",
"laravel/pint": "^1.29"
},
"autoload": {
Expand Down