Skip to content

Commit

Permalink
Add Laravel 9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjardo committed Jan 15, 2022
1 parent 5c249e8 commit e82a29d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Install composer dependencies
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Quality Score](https://img.shields.io/scrutinizer/g/label84/laravel-tagmanager.svg?style=flat-square)](https://scrutinizer-ci.com/g/label84/laravel-tagmanager)
[![Total Downloads](https://img.shields.io/packagist/dt/label84/laravel-tagmanager.svg?style=flat-square)](https://packagist.org/packages/label84/laravel-tagmanager)

An easier way to add Google Tag Manager to your Laravel application. Including recommended GTM events support.
An easier way to add Google Tag Manager to your Laravel application. Including recommended GTM events support.

- [Requirements](#requirements)
- [Laravel support](#laravel-support)
Expand All @@ -24,6 +24,7 @@ An easier way to add Google Tag Manager to your Laravel application. Including r

| Version | Release |
|---------|---------|
| 9.x | 1.2 |
| 8.x | 1.0 |

## Installation
Expand Down
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
"email": "info@tjardo.com"
}
],
"require": {
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"nunomaduro/larastan": "^1.0"
},
"autoload": {
"psr-4": {
"Label84\\TagManager\\": "src"
Expand All @@ -24,11 +31,6 @@
}
}
},
"require-dev": {
"orchestra/testbench": "^6.0",
"nunomaduro/larastan": "^1.0"
},
"require": {
"illuminate/support": "^8.0"
}
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit e82a29d

Please sign in to comment.