Skip to content

Commit

Permalink
- laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
toni-suarez committed Mar 16, 2024
1 parent 47d2f10 commit 4753371
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-php8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
laravel: ['8.*']
laravel: ['9.*']
php: [8.0, 8.1]
fail-fast: false

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $ composer require suarez/laravel-utm-parameter
Open the `app/Http/Kernel.php` file and add a new item to the `web` middleware group:

```php
# Laravel 8
# Laravel 9
protected $middlewareGroups = [
'web' => [
/* ... keep the existing middleware here */
Expand All @@ -65,7 +65,7 @@ protected $middlewareGroups = [
To enable UTM-Parameters only for certain requests to your site, add a new mapping to the `routeMiddleware` Array.

```php
# Laravel 8
# Laravel 9
protected $routeMiddleware = [
/* ... keep the existing mappings here */
'utm-parameters' => \Suarez\UtmParameter\Middleware\UtmParameters::class,
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^8.0",
"illuminate/contracts": "^8.0"
"illuminate/support": "^9.0",
"illuminate/contracts": "^9.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10",
"orchestra/testbench": "^6.22",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0"
},
Expand Down

0 comments on commit 4753371

Please sign in to comment.