Skip to content

Commit d99837e

Browse files
Corrected Laravel framework version constraints (#12)
* Corrected Laravel framework version constraints * Updated changelog
1 parent 0e0f8de commit d99837e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to `google-chat` will be documented in this file
44

5+
## 2.0.1 - 2022-04-09
6+
- Corrected Laravel Framework version constraints, preventing installations on Laravel versions >=9.1
7+
58
## 2.0.0 - 2022-02-12
69
- Upgraded to support Laravel 9.x (Minimum of 9.0.2 due to an [unintended breaking change](https://github.com/laravel/framework/pull/40880))
710
- Dropped support for PHP 7.3 and 7.4

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"require": {
1515
"php": ">=8.0",
1616
"guzzlehttp/guzzle": "^6.3 || ^7.0",
17-
"illuminate/notifications": "~9.0.2",
18-
"illuminate/support": "~9.0.2"
17+
"illuminate/notifications": "^9.0.2",
18+
"illuminate/support": "^9.0.2"
1919
},
2020
"require-dev": {
2121
"orchestra/testbench": "^7.0",

0 commit comments

Comments
 (0)